Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
I have a user that wants a table that computes the number of invoices late for a date range and then provides a summary for the whole period. I'm having trouble even conceptualizing how the calculate or filter DAX would be. I tried joining to a duplicate table on the period alone, but when I put it in a visualization it shows the same total for everything/for the entire dataset.
Data:
Desired Output
Solved! Go to Solution.
Hi @jondufault ,
According to your description, here's my solution.
1.Create a new Status table as below, don't make relationship with the fact table.
2.Create two measures:
Count Date =
COUNTROWS (
FILTER ( ALLSELECTED ( 'Table' ), 'Table'[status] = MAX ( 'Status'[Status] ) )
) + 0
Count Period =
COUNTROWS (
FILTER (
ALL ( 'Table' ),
'Table'[period]
IN VALUES ( 'Table'[period] )
&& 'Table'[status] = MAX ( 'Status'[Status] )
)
)
Put the new status column and two measures in a visual, get the correct result:
I attach my sample below for your reference.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @jondufault ,
According to your description, here's my solution.
1.Create a new Status table as below, don't make relationship with the fact table.
2.Create two measures:
Count Date =
COUNTROWS (
FILTER ( ALLSELECTED ( 'Table' ), 'Table'[status] = MAX ( 'Status'[Status] ) )
) + 0
Count Period =
COUNTROWS (
FILTER (
ALL ( 'Table' ),
'Table'[period]
IN VALUES ( 'Table'[period] )
&& 'Table'[status] = MAX ( 'Status'[Status] )
)
)
Put the new status column and two measures in a visual, get the correct result:
I attach my sample below for your reference.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Your logic for "Count Period" is not clear. Please elaborate.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
121 | |
113 | |
73 | |
65 | |
46 |