How to convert table to range in excel 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:

  • Range: Specify the range of the table you want to convert (e.g., “A1:C10”)
  • Clear Formats: Checked
  • Clear Content: Checked

Cheers! :slight_smile:

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