Assigning users to tasks in Excel

Hello, I have a daily task list that I run every morning. The number of tasks we need to do each day varies. Some days there may be 3 different tasks, some days there may be 7, some days there may be 10 different tasks. This number varies. I want to record the personnel who will perform the tasks in a table. I want to assign them. Below I share sample images as introduction and exit.
Day 1 :


Day 2 :

Day 3 :

@muhammet.sezer2

Add a new column as needed to maindt

Then use for each row in datatable/excel on maindt

And inside loop use assign with currentrow("Personnel") = personaldt.Rows(currentindex mod personaldt.Rowcount)(0).ToString

Cheers

Hi Anil,
I couldn’t understand you. Can you explain in more detail? Thank you.

@muhammet.sezer2

  1. Read the personnel data into a datatable personaldt
  2. Use excel file activity …and give the file path where to fill the data(main data with tasks)
  3. Use a for eqch row in excel activity and give the range as Excel.Sheet("SheetName")
  4. Inside loop use assign with above given formula

Cheers

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.