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!View all the Fabric Data Days sessions on demand. View schedule
Hi Team,
I am looking for equivalent DAX for below qlik expression
Count(
distinct (If(
Aggr(Count([Tag Number]),[Tag Number],[Asset ID])>1, [Asset ID]
)
)
)
Solved! Go to Solution.
@Anonymous , Try a new measure
measure =
var _tab = summarize(Table, Table[Asset ID], [Tag Number],"_cnt" ,count([Tag Number]) >1)
return
count(summarize(_tab, [Tag Number]),[Tag Number])
@Anonymous , Try a new measure
measure =
var _tab = summarize(Table, Table[Asset ID], [Tag Number],"_cnt" ,count([Tag Number]) >1)
return
count(summarize(_tab, [Tag Number]),[Tag Number])
Hi Amit,
Can you help me to convert below qlik to power bi dax
(Count(DISTINCT if(WildMatch(AGGR(distinct CONCAT(distinct [Group ],','),Progress,Grade,ID),'First'),ID))/Count(DISTINCT{<[Group] = {'First,'NotNotFirst'}>}ID),0)
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 13 | |
| 9 | |
| 8 | |
| 5 | |
| 3 |
| User | Count |
|---|---|
| 28 | |
| 21 | |
| 20 | |
| 19 | |
| 12 |