Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Solved! Go to Solution.
Duration.Days needs to have only one parameter.
You will need to replace it with
Duration.Days(EndDt-StartDt)
Also note, you need not use EndDt as date in your function as anyway you are getting the value from another query. This is redundant. Below would work perfectly
(StartDt as date) =>
let
EndDt =TodaysDate,
Age = Duration.Days(EndDt - StartDt)
in
Age
The above query can be simply written as
(StartDt as date) => Duration.Days(TodaysDate - StartDt)
Duration.Days needs to have only one parameter.
You will need to replace it with
Duration.Days(EndDt-StartDt)
Also note, you need not use EndDt as date in your function as anyway you are getting the value from another query. This is redundant. Below would work perfectly
(StartDt as date) =>
let
EndDt =TodaysDate,
Age = Duration.Days(EndDt - StartDt)
in
Age
The above query can be simply written as
(StartDt as date) => Duration.Days(TodaysDate - StartDt)
Thank you Vijay! I am annoyed at myself for missing that obvious error! I was looking in the wrong place!
Your improved code also helps so thank you for that too. 😎
Check out the April 2026 Power BI update to learn about new features.
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.
| User | Count |
|---|---|
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 4 | |
| 4 | |
| 4 |