Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

january month data

hiiii i have this query to calculate percentage its woking correctly but i want to calculate this for january month data     30 divided by Count of count = DIVIDE([30], COUNTA('Phone Call Dat...
  • nandukrishnavs's avatar
    6 years ago

    Anonymous 

     

    Try something like this.

     

    MeasureValue =
    CALCULATE (
        DIVIDE ( 30, COUNTA ( 'Phone Call Data'[count] ) ),
        MONTH ( 'Phone Call Data'[Month] ) = 1 // or 'Phone Call Data'[Month]="January"
    )