@MuralidharVankamaddi
Yes, the macro generate it, after excuting a funtion, saying that the work has been done correctly.
So i get a msg box with an ok button, that i have to click on, the thing is that i did excute first fuction excute, with macro on uipath, but it won’t move on, it gets stuck there, it doesn’t click on the button or do anything else, like it’s stuck. So i tough about using same thing for the click button and see if it works that way and also, i want have to change the selector each time i change the computer.
Sub Click_ExecuteAll()
Dim start As Long, bErr As Boolean
start = GetTickCount
Click_Clear
ActiveWorkbook.RefreshAll
bErr = testRefresh()
If bErr Then
'pass
Else
Call ExportTableToCSV(“TEST”)
Call ExcelReport_Arr(“TEST”)
MsgBox "Execution time : " & Time2String(GetTickCount - start), vbInformation, “Execute all process”
End If
End Sub
PS : i don’t know how to code on vba or powerquery, somebody else did this…