Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Good day!
In my model i load data from excel file.
Then i calculate sum of fields (Weight, Volume l.) in one expression depend choosing value in list box.
When i choose 'Weight' - it's working.
But when i choose 'Volume l.' - calculating expression is not working.. I think, it's connected with 'space' in name of field Volume l.
Can anyone solve this problem?
Please see the attached file.
Your approach is correct but just required little modification in variable
Use below expression
=IF(GetFieldSelections(Title)='Weight', SUM(Weight) , SUM(Объем))
try like this
Thanks.. but i need use expression w/o condition with if construction
Then try like this
Sorry, but i need to calculate both of values in ONE expression, using variable value.
It's main idea of my task.
can u rename this field Объем to Volume l.? Then your original file will give correct solution.
Please see the attached file.
Your approach is correct but just required little modification in variable
No, it's not working
Thank you!!!