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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi all,
I want to add a column to the table below which show the % of Total QR's done without an NC found?
So in this example, 3 total QRs complete. 1 NC found would be 66.66% correct.
Can anyone provide me with help?
Thank you
Solved! Go to Solution.
Please try the measure below:
% QRs Without NC =
DIVIDE (
[Total QRs] - [NCs Found],
[Total QRs]
)
Please try the measure below:
% QRs Without NC =
DIVIDE (
[Total QRs] - [NCs Found],
[Total QRs]
)
Hi thank you, Managed to get it looking like the below, but cannot seem to get it as a %
Select the measure in the Fields pane
Measure tools → Format = Percentage
Set decimals
Hi @TimBriggs
Can you please check this measure
% QR Without NC =
VAR TotalQR = SUM('YourTable'[Total QR's])
VAR NCFound = SUM('YourTable'[NC's Found])
RETURN
DIVIDE(TotalQR - NCFound, TotalQR, 0)
Hello @TimBriggs
try this
Create Total QRs measure
Total QRs =
COUNTROWS ( 'TableName' )
Create NC Found measure
(Adjust condition based on how NC is stored)
NC Found =
CALCULATE (
COUNTROWS ( 'TableName' ),
'TableName'[NC_Found] = "Yes"
)
% of QRs without NC (Final Answer)
% QRs Without NC =
VAR TotalQR = [Total QRs]
VAR NCCount = [NC Found]
RETURN
DIVIDE ( TotalQR - NCCount, TotalQR )
Hi @TimBriggs ,
If this response was helpful in any way, I’d gladly accept a 👍much like the joy of seeing a DAX measure work first time without needing another FILTER.
Please mark it as the correct solution. It helps other community members find their way faster (and saves them from another endless loop 🌀.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 38 | |
| 36 | |
| 28 | |
| 28 |
| User | Count |
|---|---|
| 124 | |
| 88 | |
| 74 | |
| 66 | |
| 65 |