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" )
nandukrishnavs
Community Champion
6 years agoAnonymous
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"
)