Hi,
I have a multi select combo box where every items should have a corresponding points, but the points is not visible.
Example:
Website = 1 point
Updated Website = 2 points
Linkedin Post = 3 points
E-Commerce = 5 points
What I want to achieve, is that if I select all of them my text label will add their corresponding points (11points). I used CountRows at first but it only counts the number of rows.
Thanks for your help!
Hi @azer091 ,
I made a sample for you.
Table({Value:"Website",Point:1},{Value:"Updated Website",Point:2},{Value:"Linkedin Post",Point:3},{Value:"E-Commerce",Point:5})
Sum(ComboBox1.SelectedItems,Point)
Best Regards,
Wearsky