Hi all,
I want to get the SQL data row by row with the specific column name and write the data into the google sheet.
Thanks
Hi all,
I want to get the SQL data row by row with the specific column name and write the data into the google sheet.
Thanks
Use Connect activity and configure your connection string and test the connection
Once done use Execute query activity as below
This will store to a datatable
Now use gsuite activities to write to google sheets
https://docs.uipath.com/activities/docs/google-sheets
Hope this may help you
Thanks
Refer to the Link:
Here is the sample workflow
Main.xaml (6.0 KB)
Regards
Gokul
Here is the SQL Query
Refer to the Link:
You can write query as
select MARKOUT, TOTAL_ORDER FROM table_name
this will give you all row with two columns
select top(1) MARKOUT, TOTAL_ORDER FROM table_name
this will give you first row
Hi @ermanoj3101
I am not supposed to change the query from the above table I have to take column value of markout and totol_order row by row and paste in google sheet in specific column
One row value in one column D and second in column I and so on