Forum Discussion
Measure = single value cannot be determined
- 9 years ago
Hi There,
You should understand the difference between the Measure and Calculated Column. The Calculation you are trying to achieve is more suitable for calculated column and that's why showing an error for the measure calculation.
For measure, You should try SUMX.
measure:=SUMX(list,list[TURNOVER]*5)
Thanks & Regards,
Bhavesh
I am getting same error here, Pls help.
1 star Count = if(Query1[QID:1109-QoS5pt]="1",1,0)
The column QID contains numbers 1 to 5
Hi,
Try this
1 star Count = if(Query1[QID:1109-QoS5pt]=1,1,0)
- justalam8 years agoMicrosoft Employee
- Ashish_Mathur8 years agoSuper User
Hi,
That formula should be written as a calculated column formula (not as a measure). If it still does not work, then describe the question, share some data and also show the expected result.
- justalam8 years agoMicrosoft Employee
I added that as a column and it worked, Thanks :)