I have a flow that is working if there is only one line item but if there are multiple line items the flow doubles the currency add
Mark up fee is double what it should be- Add currency field
Expert fee should be 1500
but the hours are correct? add Number fields
And yes, I know there is too much pink on this flow. I am testing a few theories
#Flow #Flows #Salesforce Flow
Your record is in a loop because the variable has not been reset. Your flow will always get the past value and add the new one in each loop iteration.
After each iteration, you need to reset the count variable for this specific use case.
So for this:
- Create a count variable
- Assign the value you need
- Assign this value to the record field
- And after that, reset the count