문제

I would like to make a sum of all dropdown values into a label text box.

I am using following formula, but I do not understand where am I going wrong.

Can anyone assist?

I have also added a screenshot if that helps anyhow.

Note: scores is the table name the dropdown values feed from.

Sum(scores, Dropdown3.Selected.Value + Dropdown3_1.Selected.Value + Dropdown3_2.Selected.Value)

Snapshot of my app

도움이 되었습니까?

해결책

Set the Text property of label to:

Sum(Dropdown3.Selected.Value, Dropdown3_1.Selected.Value, Dropdown3_2.Selected.Value)

If data type of selected item value from drop-down is string then use:

Sum(Value(Dropdown3.Selected.Value), Value(Dropdown3_1.Selected.Value), Value(Dropdown3_2.Selected.Value))

Microsoft documentations:

  1. Sum function
  2. Value function
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top