We created a table via UiPath but team want to keep the data in range but for running the pivot we created table
How to convert the table into range via UiPath
We created a table via UiPath but team want to keep the data in range but for running the pivot we created table
How to convert the table into range via UiPath
Hello @Abhinavpandey, try this:
Clear Range:
Cheers!
This is clear data from there i feel
I want to just convert table to range and save the data the wY ut way like it had 40 line in table and after convertung 40 line are still there
Do any one has resolution for this question ?facing the same issue… Like how to use “Convert to Range”.
You could use following VBA code to convert table “TableName” to range:
ActiveSheet.ListObjects("TableName").Unlist
Cheers