How to set this Multiplication system?

0
Hi! I am creating a system where Value Z = Value A + Value B1 + Value B2 + (Value C1 * Value C2 * ...). Here’s the challenge: I am not setting a specific number of Value C inputs. The number of Value C inputs will depend on how many the user chooses. Regardless, all the Value C inputs will be multiplied together. What should I write in my microflow to handle this?  
asked
1 answers
0

Hi Nur Fadhilah Binte Mohamad Noor,

 

Create a separate variable to calculate the C value. 

At the beginning of the microflow, retrieve the list where you are taking input for C. Iterate the list and calculate the C value. Since you have a value of C,now you can directly pass it to your original variable.

 

image.pngI hope this helps !!!

 

Update : 

 

Remove the filter operation inside the list. You Loop will only contain the Chane Variable. 

Please find the screen shot for your Reference :

image.png

 

Your Final Varible will look like this :

$InputValue/ValueA+ $InputValue/ValueA + $CValue

answered