Forum Discussion
NISH72
Helper IV
6 years agoConditional calculated column
Hi all I have the following table Id. Name 1. A 1. B 2. C 3. D 4. E If a particular Id has multiple names attached to it.( For eg id 1 has two names at...
- 6 years ago
Hi NISH72 ,
Try this code for a new column:
NewColumn =VAR _result = CALCULATE(COUNT('Table'[Id]); ALLEXCEPT('Table'; 'Table'[Id]))RETURN IF(_result > 1; 1; 0)
NISH72
Helper IV
6 years agoWhen I add this formula in the new column it's throwing syntax error. It's not accepting return if function. Thank you
camargos88
Community Champion
6 years agoNISH72 ,
Try with comma:
NewColumn =
VAR _result = CALCULATE(COUNT('Table'[Id]), ALLEXCEPT('Table', 'Table'[Id]))
RETURN IF(_result > 1, 1, 0)
- NISH726 years ago
Helper IV
The syntax is correct now but still I am not getting desired results. The new column is showing 0 for all rows. Thank you
- camargos886 years ago
Community Champion