The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi, friends,
I need your help finding a solution to my issue.
My excel data contains customer ID (unique) and is categorized with registration date, use date, withdrawal date, and rank.
I can count the total number of customers by distinct count. But I can't get the total number of customers who withdraws their
membership.
Can someone help me Please ...
Solved! Go to Solution.
The filter clause (second parameter) in CALCULATE either needs to be a true/false statement (ie column= value) or a table function. Change this last parameter to NOT(ISBLANK(Table[WithdrawDate]))
The filter clause (second parameter) in CALCULATE either needs to be a true/false statement (ie column= value) or a table function. Change this last parameter to NOT(ISBLANK(Table[WithdrawDate]))
Thank you dear MattAllington for your quick response.