Forum Discussion
Anonymous
6 years agoNot applicable
Handling duplicates in IF statements
Hello I write a MEASURE = IF(Table1[Col1]="SOMETHING",..... However, it seems that because there are duplicate values in Table1[Col1], the MEASURE does not work. This is not a behaviour I...
- 6 years ago
Hi Anonymous ,
Measure is different with calculated column, you need to use MAX(), MIN(), SELECTEDVALUE() or other functions to get a single value (aggregation) for calculation and comparison.
v-eachen-msft
Community Support
6 years agoHi Anonymous ,
Measure is different with calculated column, you need to use MAX(), MIN(), SELECTEDVALUE() or other functions to get a single value (aggregation) for calculation and comparison.