Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
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
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. 😎
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 |
|---|---|
| 6 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |