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.
Power BI Community,
Currently, I have data feeding into Power BI from PeopleSoft via Direct Query. How can I create an aging schedule of open Purchase Orders using the PO Date?
Regards,
Gus Dahu
Hi @gusdahu,
Could you please mark the proper answers as solutions?
Best Regards,
Dale
Hi @gusdahu,
What's Aging Schedule exactly? Can you share a dummy sample that will show up the data structure?
Best Regards,
Dale
Hi v-jiascu-sft,
In my situation, an aging schedule will classify Open Purchase Orders (POs) into buckets to reflect the number of days the PO has been outstanding. The buckets will be something like 0-30 days, 31-60 days, 90 plus days, etc. Currently the data set population has the following fields:
How would I be able to classify POs based off PO date into the buckets mentioned above? Keep in mind that I am using Direct Dequel and thus will not be able to use the "Edit Query" function or conditional formatting.
Regards,
Gus Dahu
Hi Gus Dahu,
Firstly, I would make it clear that we can use Direct Query and Import together now since the preview of power-bi/desktop-composite-models.
Now, everything seems easy. If you want to filter the buckets, you need to create a new table. If you just want to give every PO a label, please try a measure like below.
Measure = VAR temp = DATEDIFF ( MIN ( [HIRE_DATE] ), TODAY (), DAY ) RETURN IF ( temp >= 0 && temp <= 30, "0-30", IF ( temp >= 31 && temp <= 60, "31-60", ">=61" ) )
Best Regards,
Dale
Hi,
I'm getting stuck on the second part of your DAX formula. For some reason my dax formula bar is not auto populating when I begin to type the "return if" statement. Any suggestions?
Regards,
Gus Dahu
Hi @gusdahu,
I guess you missed the ")" in the formula. We should close every part of the formula to keep it complete. Please check it out.
Best Regards,
Dale
Hi v-jiascu-msft,
I added the ")" and unfortunately it did not work. Any other suggestions?
Regards,
Gus Dahu
Can you share some snapshots or the file? @gusdahu,
Best Regards,
Dale
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 |
---|---|
69 | |
64 | |
50 | |
36 | |
26 |
User | Count |
---|---|
85 | |
55 | |
45 | |
44 | |
36 |