Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
Hi,
I I have data in a column in this form
audit_sample_status | decision |
SAMPLE_UNPICKED | |
SAMPLE_PICKED | Correct |
SAMPLE_UNPICKED | |
NOT_SAMPLED | |
SAMPLE_PICKED | Correct |
SAMPLE_PICKED | Inorrect |
SAMPLE_UNPICKED |
|
I want to calculate quality percentage for sample picked data. How can i do this, what will be the best way to calculate quality?
Solved! Go to Solution.
@Anya_T , Try a measure like
divide(countx(filter(Table, [audit_sample_status] = "SAMPLE_PICKED" && [decision] = "Correct"), [audit_sample_status] ),
countx(filter(Table, [audit_sample_status] = "SAMPLE_PICKED" && [decision] in{ "Correct" , "Inorrect" }), [audit_sample_status] ) )
@Anya_T , Try a measure like
divide(countx(filter(Table, [audit_sample_status] = "SAMPLE_PICKED" && [decision] = "Correct"), [audit_sample_status] ),
countx(filter(Table, [audit_sample_status] = "SAMPLE_PICKED" && [decision] in{ "Correct" , "Inorrect" }), [audit_sample_status] ) )
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
88 | |
81 | |
65 | |
51 | |
30 |
User | Count |
---|---|
117 | |
115 | |
70 | |
64 | |
39 |