Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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 false if none matches (app2).
Solved! Go to Solution.
replace comma ",' to ";"
do not hesitate to give a kudo to useful posts and mark solutions as solution
Hi @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
Thanks @az38 for your reply. When I try to apply this to my report I get an error:
This is the "table"
replace comma ",' to ";"
do not hesitate to give a kudo to useful posts and mark solutions as solution
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
31 | |
18 | |
15 | |
7 | |
6 |