Hello to all Genius minds out there!, I need a help with excel operation.
I have excel with many columns and from Column E to G, there are formulas that needs to be copied and pasted. I written macro but looking for Uipath code
Can you please help me on this?
@gopal_ram , Hi there
Have you tried “Auto Fill range”
Here is the article : Auto Fill in whole column
2 Likes
will it autofill till the end of the dataset?
ushu
(Usha kiranmai)
October 11, 2022, 7:11am
4
Hello @gopal_ram Please check the below one
1 Like
Gokul001
(Gokul Balaji)
October 11, 2022, 7:11am
5
Hi @gopal_ram
Welcome to UiPath community
Use Write Cell activity
The UiPath Documentation Portal - the home of all our valuable information. Find here everything you need to guide you in your automation journey in the UiPath ecosystem, from complex installation guides to quick tutorials, to practical business...
Use Auto Fill Range activity
Check out the Video and thread
hi,
i have an excel file.it contain 3 columns.
in Transaction Date Column have to fill Auto Fil based on the last row of that column.
exp–C8(16-Jan-22) have to fill remain rows.
[image]
Can any one help ?
AutoFill.xlsx (9.3 KB)
Regards
Gokul
2 Likes
To fill end of the dataset,
First get the number of rows in the excel. lets say “Dt1”
RowCount = dt1.rowscount.tostring
USe rowCount to define end of dataset. Example
USe below code inside RANGE properties
“E2:E”+ RowCount .tostring
1 Like
Thanks!, this worked for me
Hi @gopal_ram
You need give range like this
Checkout this sample xaml file and output
Sample.xaml (8.8 KB)
demo.xlsx (9.0 KB)
Regards
Sudharsan
1 Like
Glad to hear!, happy to help!
1 Like
system
(system)
Closed
October 14, 2022, 7:19am
12
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.