I have a attendance responses Excel File call “Attendance Responses” and I use ‘Read Range Workbook’ to read the data from “Attendance Responses”. There are two data inside the Excel File call “Full Name” and “Attendance Status” and I want to key in the data “Attendance Status” into another Excel File call “Attendance Submission”.
Moreover, the Excel File “Attendance Submission” have a column to key in the “Attendance Status” simply call ‘Attendance’ and a name list call “Name”, and I also use ‘Read Range Workbook’ to read the data, so if “Full Name” contains “Name”, then will key in the “Attendance Status”, else will be “ABS”. The ‘Read Range Workbook’ not allow open the Excel file so I use ‘Write Range Workbook’ activity to write the “Attendance Status” but it just write the “Name” into the column ‘Attendance’.(See the attached screenshot below).
You need to use a look up datatable activity on attendance response sheet…you are only using submission and not attendence response sheet at all
Use look up range activity and in column name give name and in response give attendance status …and the output of this can be given in assign with currentrow(“attendance”) = output of look up
And in look up value field give currentrow("Name").ToString
Hi Anil
I did use “Read Range Workbook” for ‘Attendance Responses’ file and sorry can’t understand your reply because I just started learning Ui Path hope can explain a little bit more to me
Omg it finally key in correctly! But why if I put the CurrentRow name as (“Attendance”) in assign activity it will write the name again? After I change name to CurrentRow(“Name”) it solve, by the way thanks Anil!