Forum Discussion

jonnyA's avatar
jonnyA
Responsive Resident
4 years ago
Solved

Measure divided by # days worked (10.13.21)

Hello,   Hoping someone could help me on how to divide a Total divided by the amount of days a shift was worked.   In my table I have "# of Patients Per Shift" that displays the # of patients per...
  • Anonymous's avatar
    Anonymous
    4 years ago

    Hi jonnyA ,

     

    I have built a data sample:

     

    According to your description, it seems that you want to change the total average rather than the each cell as shown below:

     

    If so,please try:

    Average=
    VAR _totalAvg =
        DIVIDE (
            SUMX ( 'vw_Test Dataset_Discharge_Dataset', [# of Patients Per Shift] ),
            DISTINCTCOUNT ( 'vw_Test Dataset_Discharge_Dataset'[Shift Name] )
        )
    RETURN
        IF (
            ISINSCOPE ( 'vw_Test Dataset_Discharge_Dataset'[Shift Name] ),
            [Your original Measure],
            _totalAvg
        )
    

     

     

    Best Regards,
    Eyelyn Qin
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

  • jonnyA's avatar
    4 years ago

     Thank you so much for your formula, high five!!!

     

    I had to change Shift Name to DOS, so when I did that your formula worked!!!

     

    Thank you so much for your time and effort and for providing the data sample, that helps a lot!!!

     

    Trying to mark yours as solution, but do not have the option?

  • jonnyA's avatar
    jonnyA
    4 years ago

    Anonymous