The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello everyone
I want to make a measurement, calculate the number of subscriptions filtered by a date, but I can't
How to add a date filter in the measure?
I thank you in advance
Solved! Go to Solution.
Try:
Nuber_Subscriptions =
CALCULATE (
COUNT ( 'DWH_D_Abonnés'[id_user_account] ),
FILTER (
DWH_F_Souscription,
DWH_F_Souscription[date_subscription] <= DATE ( 2022, 10, 1 )
)
)
Proud to be a Super User!
Paul on Linkedin.
Thank you very much! it works