Hi,
I want enable this feature after completion of bot run.
Click on any cell of in excel — Click Design— Click show in tabular form
Im not sure whether we can do with macros or not any other approaches please
Attached Snapshot below
Hi,
I want enable this feature after completion of bot run.
Click on any cell of in excel — Click Design— Click show in tabular form
Im not sure whether we can do with macros or not any other approaches please
Attached Snapshot below
You can do it with Macros
or
Use click and Key board shortcuts
Regards,
=> Then take the Use application\browser activity and pass the excel file path in URL.
=> Inside use application\browser activity place the click activities and indicate the elements by Ui element approach.
Check the below workflow for better understanding.
Browser_Practice.xaml (23.3 KB)
It works for me…
Hope it helps!!
Sub EnableShowInTabularForm()
’ Replace “Sheet1” with the actual name of the sheet where you want to enable the feature
Dim ws As Worksheet
Set ws = ThisWorkbook.Sheets(“Sheet1”)ws.ListObjects.Add(xlSrcRange, ws.Range("A1").CurrentRegion, , xlYes).Name = "Table1"
End Sub
Hope it helps!!
I want to use this macro in different sheets and in different workbooks pravallika…
Is it possible…?
You can use with the changing parameters like sheetname…
hi @mkankatala
I want to use it in different excels with different sheets…(not with one excel sheet)
Thats fine…
If you have send me one sample xaml that would be appreciated… and i can know in a better way so that we can close this topic.Thanks.
Then Store the List of files in a List Datatype variable.
Then use for each to iterate the List Variable.
Then Pass the CurrentItem in the Application arguments option. Then it will take one by one file path.
Hope you understand!!