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.
Hello,
I'm utilizing the open tickets solution to solve hotel occupancy, from https://community.powerbi.com/t5/Quick-Measures-Gallery/Open-Tickets/td-p/409364, but there are some reservations that are shared. Each reservation has it's own reservation number or ticket number, but they share a hotel room and share number. Therefore using countrows overstates the number of room nights by double counting shares. I'm attempting to get a distinct count of the share numbers day by day that can be summarized.
Using distinctcount('Table'[Share]) gives the correct number of shares per day, but of course doesn't work for mulitple days. Using
Tickets Open = VAR tmpTickets = ADDCOLUMNS('Tickets',"Effective Date",IF(ISBLANK([Closed Date]),TODAY(),[Closed Date])) VAR tmpTable = SELECTCOLUMNS( FILTER( GENERATE( tmpTickets, 'Calendar' ), [Date] >= [Opened Date] && [Date] <= [Effective Date] ), "ID",[Ticket Num], "Date",[Date] ) VAR tmpTable1 = GROUPBY(tmpTable,[ID],"Count",COUNTX(CURRENTGROUP(),[Date])) RETURN COUNTROWS(tmpTable1)
But all of my results have been no where accurate.
Here is a link to my test data.
Thank you in advance for any assistance or direction.
Seth
User | Count |
---|---|
26 | |
10 | |
8 | |
6 | |
6 |
User | Count |
---|---|
32 | |
13 | |
10 | |
10 | |
9 |