Forum Discussion
Help with Dax Measure for Policy Count
- 10 years ago
Hi vickyprudhvi,
Can you please give a try to below formual to add a measure.
JobCount= CALCULATE(DISTINCTCOUNT(Table1[PolicyNumber]),Table1[JobCloseDate]<=VALUES(Table1[JobCloseDate]))
You can show this on your card visual and it will give you count of distinct policy numbers till your selected date.
Hi vickyprudhvi,
Can you please give a try to below formual to add a measure.
JobCount= CALCULATE(DISTINCTCOUNT(Table1[PolicyNumber]),Table1[JobCloseDate]<=VALUES(Table1[JobCloseDate]))
You can show this on your card visual and it will give you count of distinct policy numbers till your selected date.
Thanks Habib this seems working
I would like to know why we give Values on LHS of the equation
- Habib10 years agoContinued Contributor
It gives you the value of field in current context and in your case its the selected value in Slicer.
- vickyprudhvi10 years agoHelper IV
hi Habib
how to count policy which has prior Job type as Reinstatement
I am not able to firgure it out
thnak you
for help
- Habib10 years agoContinued Contributor
If you are looking for count of policies against specific job type, here is the syntax.
PolictCountReinstatement = CALCULATE(DISTINCTCOUNT(Table1[PolicyNumber]),Table1[JobCloseDate]<=VALUES(Table1[JobCloseDate]),Table1[Job] ="Reinstatement")