Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
65 | |
63 | |
52 | |
39 | |
25 |
User | Count |
---|---|
84 | |
57 | |
45 | |
44 | |
37 |