March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi there,
Just wondering if someone can help with the below:
I want to calculate distinct value for my measure
Solved! Go to Solution.
This should get you the result you wanted- worked for my test:
Serious Incident Total =
VAR _Incidents = CALCULATETABLE(
DISTINCT( Forms[itrak_formid] ),
Forms[Form Type] = "Incident & Investigation"
)
VAR _NotSerious = CALCULATETABLE(
DISTINCT( Forms[itrak_formid] ),
Forms[Category] = "Not Serious"
)
RETURN
COUNTROWS(
EXCEPT( _Incidents, _NotSerious )
)
We create a table of distinct incidents (_Incidents), a table of distinct not serious forms (_NotSerious),
Remove IDs that appear in _NotSerious from _Incidents,
And count the rows on the resulting table.
This should get you the result you wanted- worked for my test:
Serious Incident Total =
VAR _Incidents = CALCULATETABLE(
DISTINCT( Forms[itrak_formid] ),
Forms[Form Type] = "Incident & Investigation"
)
VAR _NotSerious = CALCULATETABLE(
DISTINCT( Forms[itrak_formid] ),
Forms[Category] = "Not Serious"
)
RETURN
COUNTROWS(
EXCEPT( _Incidents, _NotSerious )
)
We create a table of distinct incidents (_Incidents), a table of distinct not serious forms (_NotSerious),
Remove IDs that appear in _NotSerious from _Incidents,
And count the rows on the resulting table.
Hi, @chavanr
Could you please consider sharing more details about it and posting expected result so it is clear on what needs to be implemented? And It would be great if there is a sample file without any sesentive information here.
It makes it easier to give you a solution.
Best Regards,
Community Support Team _ Zeon Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@chavanr , if want distinct values a measure first you need to get a grouping for that
like
measure =
var _tab = summarize(Forms,Forms[Column], "_1",[Total Incidents ])
return
countx(values(_tab[_1],[_1])
measure =
var _tab = summarize(Forms,Forms[Column], "_1",[Total Incidents ])
return
countx(summarize(_tab, _tab[_1],[_1])
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
23 | |
16 | |
15 | |
7 | |
6 |
User | Count |
---|---|
33 | |
29 | |
16 | |
13 | |
12 |