Forum Discussion

ericbi's avatar
ericbi
Frequent Visitor
8 years ago
Solved

How to calculate percentage in row

Hi,    I have a table like this. Status Y means won the quotation.      I would like to have a report showing the % of won for each person.  eg.  I've tried some measures to calcul...
  • Phil_Seamark's avatar
    8 years ago

    Hi ericbi

     

    Please add the following three calculated measures to your model

     

    Total Win = COUNTROWS(FILTER('Table1','Table1'[Status]="Y"))
    Count of Quote No. = COUNTROWS('Table1')
    % of Win = DIVIDE([Total Win],[Count of Quote No.])

    Format that last measure as a percent and drag all three to a table visual using the Full Name field and it should work.