Forum Discussion
siva54
Helper I
4 years agoAsset Description with same class
Hi Team, I need a calculated column for the below criteria. we have differnent asset classes with different asset description with their codes. Here, For Example:- Asset Description are{ F...
- 4 years ago
siva54
Add the following column:Check = VAR _DES = Table1[Asset Description] VAR __CLASS = Table1[Asset class] VAR _CODE = Table1[Code] VAR _LIST = CALCULATETABLE( VALUES(Table1[Code]), Table1[Asset Description] = _DES , Table1[Asset class] <> __CLASS, REMOVEFILTERS( ) ) RETURN IF ( _CODE IN _LIST , "ANAmoly" , "Not An" )
wdx223_Daniel
Community Champion
4 years agoFinal Out Put=IF(CALCULATE(DISTINCTCOUNT(TableName[Asset class]),ALLEXCEPT(TableName,TableName[Asset description]))>1,"Anamoly","Not Anamoly")