Hello friends,
I am thinking of making a workflow for Google Docs for each value in DB. Let’s clear this up with an example. We have something like this in our DB.
DB data:
merchant_id, goods, actual_sell, expected_sell
1, bread, 34, 100
1, oil, 54, 100
1, chair, 12, 100
2, medicine, 40, 100
2, towel, 23, 100
2, fruits, 89, 100
we have defined templated with variable name inside it as per the different merchant_id. Now, we want to make a report of selling based on merchant_id. If merchant_id = 1 then grap the details of it and also DB_2 contains the further related details of merchant_id 1.
If merchant_id = 2 then grap the details of it and also DB_3 contains the further related details of merchant_id 2 and so on.
So, now, can I create the workflow that will go through each row in DB? If the merchant ID comes first, then copy the Google Doc with that merchant ID that contains the variable and insert the details of DB, DB_2, DB_3, etc. based on variable name defile in google doc node.
Final result will be 1 google doc for each merchant_id with related details.
My current workflow without loop. (With this I need this flow for each merchant_id which is too much )