Forum Discussion

TimBriggs's avatar
TimBriggs
New Member
8 months ago
Solved

Table Column to Calculate Totals

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.  ...
  • cengizhanarslan's avatar
    8 months ago

    Please try the measure below:

    % QRs Without NC =
    DIVIDE (
        [Total QRs] - [NCs Found],
        [Total QRs]
    )