Hi I have excel sheet i want add a new column As Total and add with excel formula
or any other way adding all the values of 3 columns.
Data.xlsx (8.6 KB)
Hi I have excel sheet i want add a new column As Total and add with excel formula
or any other way adding all the values of 3 columns.
Data.xlsx (8.6 KB)
Hi @T_Y_Raju
1.Add data column Total
2.Assign
Dt.Columns("Total").Expression = "[Salary]+[Commision]+[Bonus]"
Cheers!!
assign shpuld be data row
what should be the type of assign
iam using studio 2022.4.3
Hi @T_Y_Raju
You have UiPath.Excel.Activities
dependency installed you can try replicating the flow like above.
Regards
Hi @T_Y_Raju,
If you want to write the formulae =SUM(A2:C2)
instead of adding manually A2 + B2 + C2
.
It is necessary to use the Write Cell
activity. Inside Value, add your formulae and provide necessary ROW index to the formulae.
Please find the attachment solution.
AddExcelFormulae.xaml (11.1 KB)