Forum Discussion
value can not be determined error
Hi there,
I am trying to create measure for the legend for map. I read following statement to calculate the measure.
Hi Dunner2020 ,
We can try to use the following measure to meet your reqirement:
RANGES = SWITCH ( TRUE (), AND ( SUM ( Sheet1[Confirmed_Cases] ) >= 0, SUM ( Sheet1[Confimred_Cases] ) < 10 ), "0 to 9", AND ( SUM ( Sheet1[Confimred_Cases] ) >= 10, SUM ( Sheet1[Confimred_Cases] ) < 50 ), "10 to 49", SUM ( Sheet1[Confimred_Cases] ) >= 50, "50 and more" )
Best regards,
4 Replies
- edhansCommunity Champion
Can you make sure the column name doesn't have a trailing space(s)?
If you are doing a measure, you must specify the table before the column. Just putting [Confirmed Cases] in a measure it is expecting another measure being referenced. That is ok in a Calculated Column though as everything is the current table.- Dunner2020Post Prodigy
Hi edhans,
I have removed the sapaces from the column name and also put the table name, but no luck. Here is the updated snippet code:
RANGES = SWITCH(TRUE(),AND(Sheet1[Confirmed_Cases]>=0,Sheet1[Confimred_Cases]<10),"0 to 9",AND(Sheet1[Confimred_Cases]>=10,Sheet1[Confimred_Cases]<50),"10 to 49",Sheet1[Confimred_Cases]>=50,"50 and more")- v-lid-msftCommunity Support
Hi Dunner2020 ,
We can try to use the following measure to meet your reqirement:
RANGES = SWITCH ( TRUE (), AND ( SUM ( Sheet1[Confirmed_Cases] ) >= 0, SUM ( Sheet1[Confimred_Cases] ) < 10 ), "0 to 9", AND ( SUM ( Sheet1[Confimred_Cases] ) >= 10, SUM ( Sheet1[Confimred_Cases] ) < 50 ), "10 to 49", SUM ( Sheet1[Confimred_Cases] ) >= 50, "50 and more" )
Best regards,