Forum Discussion
amit_msmba
3 years agoNew Member
DAX filter with condition
Hi Friends, I need a help writting this measure. Here is a sample data. Plan Year Amt Plan 1 2019 30 Plan 1 2020 40 Plan 1 2021 15 Plan 2 2015 20 Plan 2 2018 20 Pla...
- 3 years ago
hi amit_msmba
try to plot a card visual with the measure like this:
YearList = VAR _plan = MINX( FILTER(TableName, TableName[Amt]>35), TableName[Plan] ) VAR _year = CALCULATETABLE( VALUES(TableName[Year]), TableName[Plan] = _plan ) RETURN CONCATENATEX( _year, TableName[Year], ", " )i tried and it worked like this:
FreemanZ
Super User
3 years agohi amit_msmba
try to plot a card visual with the measure like this:
YearList =
VAR _plan =
MINX(
FILTER(TableName, TableName[Amt]>35),
TableName[Plan]
)
VAR _year =
CALCULATETABLE(
VALUES(TableName[Year]),
TableName[Plan] = _plan
)
RETURN
CONCATENATEX(
_year,
TableName[Year],
", "
)
i tried and it worked like this:
amit_msmba
3 years agoNew Member
Hello FreemanZ,
Thanks for providing DAX for YearList. Instead of concatenated Years, I want it to return me 'Plan 1' with all the columns, as Plan 1 year 2020 meet the condition Amt > 35. The output should be something linke this, How to do that?