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
Hi everyone - I'm just learning how to make Let Statements as Steps.
I have this problem - I'm calculating Years of Service, at 30 Apr 23.
However, if the person has left / if Status is T, then the endDate = Term Date.
Is it possible to modify the statement below so it does a check for the endDate ?
This is my Let Statement (as a Step) so far:
let
startDate = [Hire Date],
endDate = #date(2023,04,30),
durationInDays = Duration.Days(endDate - startDate),
durationInYears = durationInDays / 365
in
durationInYears
I thought briefly about doing it as a conditional column, I think that's another complication.
Thanks for any suggestions 🙂
Solved! Go to Solution.
Hi @Linnil
Assuming you have a [Status] and [Term Date] field, like [Hire Date] in in your table, try this:
let
startDate = [Hire Date],
endDate = if [Status] = "T" then [Term Date] else #date(2023,04,30),
durationInDays = Duration.Days(endDate - startDate),
durationInYears = durationInDays / 365
in
durationInYears
I hope this is helpful
Hi @Linnil
Assuming you have a [Status] and [Term Date] field, like [Hire Date] in in your table, try this:
let
startDate = [Hire Date],
endDate = if [Status] = "T" then [Term Date] else #date(2023,04,30),
durationInDays = Duration.Days(endDate - startDate),
durationInYears = durationInDays / 365
in
durationInYears
I hope this is helpful
Thank you for this! (sorry for late reply, it was a crazy week).
Have a lovely weekend 🙂
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 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 5 | |
| 5 | |
| 4 |