Forum Discussion
Stop Cumulative count curve
Hi amirghaderi ,
Try like this measure:
Issued Count =
IF (
SELECTEDVALUE ( 'Table'[Date] )
<= CALCULATE (
MAX ( 'Table'[Date] ),
FILTER ( ALL ( 'Table' ), 'Table'[Criteria] = "Issued" )
),
CALCULATE (
COUNT ( 'Table'[Date] ),
FILTER (
ALL ( 'Table' ),
'Table'[Date] <= MAX ( 'Table'[Date] )
&& 'Table'[Criteria] = "Issued"
)
)
)
Attached my sample file that hopes to help you: Stop Cumulative count curve.pbix
Best Regards,
Yingjie Li
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
Still the same issue as below:
- v-yingjl6 years ago
Community Support
Hi amirghaderi ,
Could you please share a sample file for further discussion? Please remember to replace the sensitive information when sharing sample file.
Best Regards,
Yingjie LiIf this post helps then please consider Accept it as the solution to help the other members find it more quickly.
- amirghaderi6 years ago
Helper IV
Hi,
How can I attached PBI file? I cant find any attachment option.
- v-yingjl6 years ago
Community Support
Hi amirghaderi ,
You can upload the sample file to a place where you can store files like Onedrive for Business etc. and share the file link.
Best Regards,
Yingjie LiIf this post helps then please consider Accept it as the solution to help the other members find it more quickly.