I have a project requiring add a row into a table after getting information via Telegram Bot. Basically, when I send messages "A", "B", "C" to Telegram Bot, the Bot will receive the data and create rows including:
- "Update ID" column ( which means the series of the text, for example "A" indicated as 1 because this is the first message I sent, "B" is 2 because this is the second, "C" is 3 because this is the third ) ,
- "Text" column (which means "A", "B", and "C" I have just sent as the messages in the previous step).
The situation is when I send another message "D", I need to trigger the flow manually again to add the row with "D" information. If not the row would not be updated. So I create the recurrence function which means in every 60s the flow would be triggered automatically. However, it will create the rows with "A", "B", and "C" again besides creating "D" with UpdateID "4". And I just need they add "D" ONLY with the UpdateID is "4" not "A", "B", and "C" again.
Please find the picture attached!
I am working on Condition function but I still cannot sort it out. Please help!