Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
dhandapani
Frequent Visitor

Query to Conditioned aging calculation

Hello All, I'm very much new to Power BI. I have a complicated item to deal with.

 

I have a data with dates in mutiple cloumns. I need to calculate the aging based upon following conditions.

 

1.  Calulate ageing with date in PO date

2. If PO date has no value, go to Delivery Date and calculate aging from that value

3. If PO date and Delivery date is blank, go to EX date and calculate aging.

Spoiler
Capture.PNG

 In summary, i need to look every column one by one and calculate ageing with Or condition. 

1 ACCEPTED SOLUTION
BA_Pete
Super User
Super User

Hi @dhandapani ,

 

When you say 'aging' I'm assuming you mean days between the target date and today. If so, then try this as a new custom column:

let
  Date.Today = Date.From(DateTime.LocalNow())
in
if [PO Date] <> null then Duration.Days(Date.Today - [PO Date])
else if [Delivery Date] <> null then Duration.Days(Date.Today - [Delivery Date])
else if [Ex Date] <> null then Duration.Days(Date.Today - [Ex Date])
else // your escape value if no condition is true e.g. null, or "Error" etc.

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




View solution in original post

1 REPLY 1
BA_Pete
Super User
Super User

Hi @dhandapani ,

 

When you say 'aging' I'm assuming you mean days between the target date and today. If so, then try this as a new custom column:

let
  Date.Today = Date.From(DateTime.LocalNow())
in
if [PO Date] <> null then Duration.Days(Date.Today - [PO Date])
else if [Delivery Date] <> null then Duration.Days(Date.Today - [Delivery Date])
else if [Ex Date] <> null then Duration.Days(Date.Today - [Ex Date])
else // your escape value if no condition is true e.g. null, or "Error" etc.

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.