Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Use Calculation in Matrix Total

Hi all,   I have a simple calculated column that is dividing two column by each other:   Conversion Rate = DIVIDE('Campaigns Data'[Conversions],'Campaigns Data'[Unique Pageviews])     I've pu...
  • Anonymous's avatar
    Anonymous
    7 years ago

    FYI for anyone reading this. I have solved this by creating three measures:

     

    Total uPVs = SUM('Data'[Unique Pageviews])
    
    Total Conversions = SUM('Data'[Conversions]
    
    Conversion Rate_Proper = DIVIDE ([Total Conversions],[Total uPVs])

     

    Conversion Rate_Proper then goes into the value field in the matrix.

     

    Works a charm.

     

    Sam