Hi Team,
I would like to find two solution for the same requirement. I tried Multi-Row formula but not getting the expected result its adding the values without condition. It will be great if any one can assist me.
Expected Result: Same way have to find the remaining all future date values.
2.Need to find the subtotal based on service. Expected Result
Thanks
Hi @Gmurugan,
You could do this using the multi-row formula tool ensuring you group on the right fields, which in this case would be service and city. Transposing before the multi-row allows us to perform this calculation across all columns at once rather than one by one (we'll need to include Name in the multi-row grouping also if that's the case).
I've attached my workflow to help you work through, if you have any questions just let me know!
Kind regards,
Jonathan
The formula was thus verifying whether the 3 previous periods. I believe you have to adjust the average division. I did proportional, I didn't divide all by 3. if you have 3 items by 3 if you have 2 items by 2 . and by 1 Make the necessary adjustments
if IsNull([Row-1:City]) then [Sum_A]
elseif [Sum_A] == 0 and [City] == [Row-3:City] then Round(([Row-1:Sum_A]+[Row-2:Sum_A]+[Row-3:Sum_A])/3,1)
elseif [Sum_A] == 0 and [City] == [Row-2:City] then Round(([Row-1:Sum_A]+[Row-2:Sum_A])/2,1)
elseif [Sum_A] == 0 and [City] == [Row-1:City] then Round(([Row-1:Sum_A])/1,1)
else [Sum_A]
endif
attached a workflow example
Hi @Jonathan-Sherman
Future date values need to pick dynamically in previous row calculated value.
Below is the result after Multi Row formula. The logic should also need be consider the future predicted value.
Any suggestion?
Thanks
Geetha
Thank you!