Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
hello everyone once again
I'm trying to build a table of pending payment documents, grouped by overdue (Total Receivable Overdue) and not overdue (Total Receivable Expiring).
I need your help to create a way to group these documents by Total Receivable Overdue and Total Receivable Expiring
REPORT EXAMPLE
example table:
I created a measure for the group
Group =
Var Group = [Overdue?]
return
IF( Group ="Yes", "Total Receivable Overdue", "Total Receivable Expiring")
The due days of the documents are calculated by a maximum date that I indicate in a filter
Days Expired =
Var difference = DATEDIFF(max(Client[due date]), [Date Max], DAY)
return
difference
The max date formula
@ngomes , Grouping means do you want to use that in the group by/row/column/axis. If yes you need dynamic segmentation
refer this example - is hows how deal with such measures
Customer Retention with Dynamic Segmentation, New/Lost/Retain Customer Count: https://www.youtube.com/watch?v=W4EF1f_k6iY
Good afternoon
I want to group by row, in this example I will have only two groups
1- Total Overdue Receivable
2- Total Receivable to Expire
thanks
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.