Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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)
User | Count |
---|---|
25 | |
12 | |
8 | |
6 | |
6 |
User | Count |
---|---|
26 | |
12 | |
11 | |
10 | |
6 |