Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

DAX Formula for Pecentage

 

 

 

 

 

 

  • Hi Anonymous

     

    1. Place a matrix visual in your report

    2. Place Region on rows of the matrix

    3. Place this measure in values of the matrix for the number of orders:

      NumberOfOrders= SUM(Table1[Number of orders])

    4. Place this measure in values of the matrix for the capacity:

      Capacity= SUM(Table1[Capacity Total])

    5. Place this measure, that uses the two previous ones,  in values of the matrix for the utilization:

      Utilization= DIVIDE([NumberOfOrders], [Capacity])

     

     

1 Reply

  • AlB's avatar
    AlB
    Community Champion

    Hi Anonymous

     

    1. Place a matrix visual in your report

    2. Place Region on rows of the matrix

    3. Place this measure in values of the matrix for the number of orders:

      NumberOfOrders= SUM(Table1[Number of orders])

    4. Place this measure in values of the matrix for the capacity:

      Capacity= SUM(Table1[Capacity Total])

    5. Place this measure, that uses the two previous ones,  in values of the matrix for the utilization:

      Utilization= DIVIDE([NumberOfOrders], [Capacity])