Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

calculate Overlap ratio

Hi, can anyone help me here?  I got store name, date, customer count and I calculated customer in total for each place. How can I get the [customer total] / [my store total)  in order to get the ov...
  • v-kelly-msft's avatar
    6 years ago

    Hi @nabe

     

    With the columns "store name","Date","customer count",you can calculate out the columns:"customer in total","my store in total"&"overlap ratio",for the detais,you need 3 calculated columns as below:

     

    Customer in total = CALCULATE(SUM('Table'[customer count]),ALLEXCEPT('Table','Table'[Store name]))
    My store in total = CALCULATE(SUM('Table'[customer count]),FILTER('Table','Table'[Store name]="My store"))
    Overlap ratio = FORMAT(DIVIDE('Table'[Customer in total],'Table'[My store in total]),"percent")

    And you will see:

     

    For the related .pbix file,pls click here.

     

    Best Regards,
    Kelly
    Did I answer your question? Mark my post as a solution!