Hi Team,
I have a flow that updates daily, getting around 500 rows of data from the previous three months. I need to check to see if two columns have had any changes since the initial flow run (which imports my data).
My current flow is setup like this:
- Run query against data set
- Start an array variable
- Parse Json and store data against my variable
- Apply to each
- Get items
- Check length of items
- If item is length is not 0 > then create
- Otherwise update
Now i am at a loss, if i need a second Flow to run after this has been successful to check for specific text changes
Original flow imports data
Second flow will check to see if anything has changed and update each item with the Original text and then on a second column changes
Any ideas on how I would implement this?