Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi
I used this code to calculate the difference between 2 dates
Duration.Days(Duration.From([Date_Today]-[Date]))
This gives me the proper result in days, but can I convert these days into years?
so that ex 65 days = 0 years, 521 = 1 year ...
thx
Solved! Go to Solution.
@jochendecraene
Your formula will go as :
Number.RoundDown(
Duration.Days(Duration.From([Date_Today]-[Date]))/365.25,
0
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@jochendecraene
Your formula will go as :
Number.RoundDown(
Duration.Days(Duration.From([Date_Today]-[Date]))/365.25,
0
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@jochendecraene
First, calculate the days difference as oer your formula,
Divide it by 365.25 (.25 added to include leap year as it comes once in 4 years), you get the year with fraction.
Round it down to show only full completed year(s).
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
15 | |
10 | |
10 | |
8 | |
7 |