Forum Discussion
Sander_NL
Helper I
6 years agoCheck if value meets two criteria
Hi, I've a table with multiple applications. I need to check if the application has "mw1" OR "mw2". I need a new column with a value true if one of the two middleware components exists (app1) or...
az38
Community Champion
6 years agoHi Sander_NL
try a measure
Measure =
var _count = calculate(COUNTROWS('Table'),FILTER(ALL('Table'),'Table'[app]=SELECTEDVALUE('Table'[app]) && ('Table'[middleware1]<>"" || 'Table'[middleware2]<>"")))
RETURN
if(_count>0,true(),FALSE())
do not hesitate to give a kudo to useful posts and mark solutions as solution