Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hi All,
Can anyone suggest a formula for the below scenario, since im relatively new to Power BI and the formula which i have used is not working. Thanks in Advance
Solved! Go to Solution.
Hello there @JithinPlr , you can add the following step to your query:
#"Added Custom" = Table.AddColumn(#"Removed Other Columns", "Age as of Today", each if [Doc Date] <> #date(1900, 1, 1) then Date.From(DateTime.LocalNow()) - [Doc Date] else Date.From(DateTime.LocalNow()) - [Transaction Date])
Hope this answer solves your problem!
If you need any additional help please @ me in your reply.
If my reply provided you with a solution, please consider marking it as a solution ✔️ or giving it a kudoe 👍
Thanks!
You can also check out my LinkedIn!
Best regards,
Gonçalo Geraldes
Hi @JithinPlr
You can create a custom column with Power Query.
if [Doc Date] = #date(1900,1,1) then Duration.Days( Date.From(DateTime.LocalNow()) - [Transaction Date] ) else Duration.Days( Date.From(DateTime.LocalNow()) - [Doc Date] )
Or create a calculated column with DAX.
Age as of Today = INT( IF('Table'[Doc Date] = DATE(1900,1,1), TODAY() - [Transaction Date], TODAY() - [Doc Date]) )
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Hi @JithinPlr
You can create a custom column with Power Query.
if [Doc Date] = #date(1900,1,1) then Duration.Days( Date.From(DateTime.LocalNow()) - [Transaction Date] ) else Duration.Days( Date.From(DateTime.LocalNow()) - [Doc Date] )
Or create a calculated column with DAX.
Age as of Today = INT( IF('Table'[Doc Date] = DATE(1900,1,1), TODAY() - [Transaction Date], TODAY() - [Doc Date]) )
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Hello there @JithinPlr , you can add the following step to your query:
#"Added Custom" = Table.AddColumn(#"Removed Other Columns", "Age as of Today", each if [Doc Date] <> #date(1900, 1, 1) then Date.From(DateTime.LocalNow()) - [Doc Date] else Date.From(DateTime.LocalNow()) - [Transaction Date])
Hope this answer solves your problem!
If you need any additional help please @ me in your reply.
If my reply provided you with a solution, please consider marking it as a solution ✔️ or giving it a kudoe 👍
Thanks!
You can also check out my LinkedIn!
Best regards,
Gonçalo Geraldes
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 3 | |
| 3 | |
| 2 |
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 6 | |
| 6 | |
| 5 |