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
Hi there,
I am having the same error, but mines about the DIVIDE. Kindly please refer on the formula below.
Which I had used, Any idea for a fix?
CH_Iteration = DIVIDE('CaseIterations_CH3PH'[CHold_Count], 'CaseIterations_CH3PH'[CHold Validate], 0)
Note that I used the above formula on creating a New Measure.
Hi,
Try this measure
=DIVIDE(SUM('CaseIterations_CH3PH'[CHold_Count]),SUM('CaseIterations_CH3PH'[CHold Validate]),0)
Hope this helps.
- rkamiya8 years agoNew Member
thank you so much man! you nailed it right on the spot!! thank you sooooooo much in a million times!!
- Ashish_Mathur8 years agoSuper User
You are welcome. If my reply helped, please mark it as Answer.