Forum Discussion
Anonymous
6 years agoNot applicable
Additional wildcard Filter for LOOKUPVALUE
Hello & Happy Friday, Using the DAX LOOKUPVALUE code below is it possible add an additonal wildcard filter on CRITSITS'[CritSit Event Type] = "*Metric*"? The DAX code below works great but ...
- 6 years ago
You may have better luck with just simple filtering like this:
CritSitVerified = IF(ISBLANK( MAXX( FILTER( 'CRITSITS', 'CRITSITS'[Ticket ID] = 'CROutages'[RTPA] && (SEARCH("Metric",'CRITSITS'[CritSit Event Type],1,-1) > 0) ), 'CRITSITS'[CritSit Event Type] )), "No","Yes")
Greg_Deckler
Community Champion
6 years agoYou may have better luck with just simple filtering like this:
CritSitVerified =
IF(ISBLANK(
MAXX(
FILTER(
'CRITSITS',
'CRITSITS'[Ticket ID] = 'CROutages'[RTPA] &&
(SEARCH("Metric",'CRITSITS'[CritSit Event Type],1,-1) > 0)
),
'CRITSITS'[CritSit Event Type]
)),
"No","Yes")
- Anonymous6 years agoNot applicable
Hello Greg,
You are truly amazing, your solution worked and fix my problem instantly.
Many thanks & have a great weekend 😉
Don