Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi Community,
I am struggling to find total Active clients at any time. I think what I want to see is cumulative sum of active clients till a given time.
Attached is my PBI sample file: https://1drv.ms/u/s!Ag919_pO_UKrfRMyC_hju4xy4oc?e=noOgqs
The following dax doesnt give right result:
Active Clients = CALCULATE(count(Data[internalid]),filter(Data,Data[statustext] = "Active" && Data[created]<= max(Data[created])))
Please suggest.
Many thanks in advance,
Meena
Solved! Go to Solution.
Try this
Active Clients = CALCULATE(count(Data[internalid]),filter(all(Data),Data[statustext] = "Active" && Data[created]<= max(Datedim[Date])))
pbix
https://www.dropbox.com/s/zdyjw3ltg7usg57/Active%20clients.pbix?dl=0
Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks.
Try this
Active Clients = CALCULATE(count(Data[internalid]),filter(all(Data),Data[statustext] = "Active" && Data[created]<= max(Datedim[Date])))
pbix
https://www.dropbox.com/s/zdyjw3ltg7usg57/Active%20clients.pbix?dl=0
Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.