Forum Discussion
Vishal_2202
3 years agoFrequent Visitor
Conditional new column
How to get max date value of column 1 if column 2 has value'xy' and column 3 has value'2'.
- 3 years ago
Pleae try
= CALCULATE ( MAX ( 'Table'[column1] ), 'Table'[column2] = "xy", 'Table'[column3] = 2 )
Vishal_2202
3 years agoFrequent Visitor
But we can't define specific value from column 2 and column 3
tamerj1
3 years agoCommunity Champion
Pleae try
=
CALCULATE (
MAX ( 'Table'[column1] ),
'Table'[column2] = "xy",
'Table'[column3] = 2
)- Vishal_22023 years agoFrequent Visitor
Thanks tamerj1