Forum Discussion
Anonymous
6 years agoNot applicable
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...
- 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" )
Tahreem24
6 years agoSuper User
Anonymous ,
Try a below DAX:
CALCULATE(DIVIDE([30], COUNTA('Phone Call Data'[count])),FILTER(DateTable,MONTH(DateTable[DateColumn])=1))