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, I have 3 columns - Custid, Prodid, Reservation Date and Cancellation Date and below is the requirement.
I want to get Count of Custid WHERE Reservation date is in last 4 weeks from todays date WHERE there is no Cancellation date
DIVIDED by Count of Distinct Prodid DIVIDED by 13
Can someone please give me this DAX query ? Many Thanks
Hi @Anonymous ,
Try
CALCULATE(COUNT(custid),FILTER(ALL(table),Reservation date>=TODAY()-28&&Reservation date<=TODAY()&&Cancellation Date=BLANK()))/CALCULATED(DISTINCT(Prodid),ALL(table))/13
It's better to share some sample data and expected result to us.
Best Reagrds,
Jay
Hi,
Share some data and show the expected result.