Forum Discussion
Anonymous
4 years agoNot applicable
How to implement DAX formula for this : if column F- column G=column H-column I=True else false
- 4 years ago
Please try to create a new column like below:
Match = var f1 = 'Table'[PIR Count]-'Table'[PDR Count] var f2 = 'Table'[GIR Count]-'Table'[GDR Count] return IF(f1=f2,TRUE(),FALSE())
vigneshahob
4 years agoFrequent Visitor
You will have to decide if this should be a column or a measure.
Measure would aggregate and so the filter context plays a key role.
If you would like every row to be flagged "Visually", then you will have to create a column not a measure.
Anonymous
4 years agoNot applicable
I am planning to create a calculate column but its not working