Hello Community,
I need a solution for my process.
. we have an excel with data which need to assign the complete row to one particular engineer through email stating we have assigned new case to you for processing.
. same need to repeat for 8 engineers with the Input file once 8 rows are finished assigning the same 8 engineers. 9th row need to assign to the 1st engineer .
Daily distribution is on Round Robin basis.
can anyone suggest how to design the flow?
ppr
(Peter Preuss)
March 7, 2022, 5:16pm
2
in general we can model round robins by using the Mod function
Maybe you can illustrate some sample data with demo names… so we can workout some more details
Also have a look here:
@Ranvir_Sangwan
Variables
[grafik]
Excel readin
[grafik]
Creating List (we use it later for the Lookup)
[grafik]
The(you called it RoundRobin) we do implement with the modulo function
[grafik]
Find starter help here:
Ranvir Sangwan.xaml (18.6 KB)
okay like when 1st row completed it will apply to 2nd row as well the same with the for Each right ?
ppr
(Peter Preuss)
March 7, 2022, 5:24pm
4
not clear. As mentioned share more clear description along with samples. Also check updated post from above linking to an example
chaitanyaKumar:
the for Each right
for each output index (0,1,2,3… per loop) in combination with the demonstrated MOD function can be used e.g. for the round robin.
Hi Peter,
I attached the Input file here please check it,
sheet 1 is input file row details.
Sheet2 need to assign to the engineers.
Input.xlsx (11.1 KB)
ppr
(Peter Preuss)
March 7, 2022, 5:43pm
6
assumed following
there is a list with developers emails:
arrDevEmail = {a@domain.com, b@domain.com …}
We want to iterate the excel and assign in round robin style the rows to the dedicated developer
we can do:
But maybe it would be more efficient to group also the different rows to the different developers and send an email with more rows in order to reduce the emails with work assignments
feel fre to remove the offset and use idx Mod arrDevEmail
instead
yes we suggested the same to the user each row to individual email will received more count.
any ways i will try you way and confirm you. thanks for the quick responce.
system
(system)
Closed
March 16, 2022, 12:01pm
8
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.