This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
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.
In summary, i need to look every column one by one and calculate ageing with Or condition.
Solved! Go to Solution.
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
Proud to be a Datanaut!
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
Proud to be a Datanaut!
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.