Forum Discussion
Measure = single value cannot be determined
- 10 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
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
- Anonymous10 years agoNot applicable
Oh right, now I realize why I could use this formula before, I totally forgot I used CalculatedColumn. Thanks a lot for reminding me.
- justalam8 years ago
Microsoft Employee
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
- Ashish_Mathur8 years ago
Super User
Hi,
Try this
1 star Count = if(Query1[QID:1109-QoS5pt]=1,1,0)
- justalam8 years ago
Microsoft Employee
- atillotson3 years agoFrequent Visitor
Hi there,
Having a similar issue but not quite the same. I am trying to make a calculated column, rather than a measure and I get the following error:
"A single value for column 'Number of Working Days per Year (incl. BH)' in table 'Dim_HR People_CurrentHeads' cannot be determined. This can happen when a measure formula refers to a column that contains many values without specifying an aggregation such as min, max, count, or sum to get a single result."
The formula is:
Total Working Days per Year (excl. BH) = CALCULATE('Dim_HR People_CurrentHeads'[Number of Working Days per Year (incl. BH)] - Dim_Dates[Total Bank Holidays])Where Number of Working Days per Year (incl. BH) is a calculated column and Total Bank Holidays is a calculated measure.Thanks!