Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi, can someone please help with the correct syntax below please?
I am trying to categorise the expected application end date by adding on 2.6 years to applicants from their app_in date.
If app_in 01/01/2024 then 2.6 years will be 01/06/2026.
App_end = if(app[age group] = "18-25", date(year(app[app_in])+2.6,
month(app[app_in]), day(app[app_in]))
Solved! Go to Solution.
Hello @M_SBS_6 ,
you can acheive what you want in the following measure
App_end = if(app[age group] = "18-25", date(year(app[app_in])+2,
month(app[app_in])+5, day(app[app_in])))
Proud to be a Super User! | |
You need a calculated column :
App_end =
IF(
app[age group] = "18-25",
EDATE(
app[app_in],
2 * 12 + 7 // here you add 2 years and 7 months to app_in date
),
app[app_in] // here your default case if age group is not "18-25"
)
How much is 0.6 of a year? Please provide an example of the result of adding 2.6 years to a date.
Phil
Proud to be a Super User!
Hello @M_SBS_6 ,
you can acheive what you want in the following measure
App_end = if(app[age group] = "18-25", date(year(app[app_in])+2,
month(app[app_in])+5, day(app[app_in])))
Proud to be a Super User! | |
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
72 | |
67 | |
51 | |
38 | |
26 |
User | Count |
---|---|
88 | |
52 | |
45 | |
39 | |
38 |