This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi Expert
I need to create a new column using IF statement to calculate my finance year.
E.g: if date falls between April 2019 to March 2020 = FY 20
if date falls between April 2018 to March 2019 = FY 19
Can anyone help me with this statement?
Solved! Go to Solution.
Hi, @Yuiitsu
Based on your description, I created data to reproduce your scenario.
Table:
Table = CALENDAR(DATE(2018,1,1),DATE(2020,12,31))
You may create a calculated column as below.
finance year =
var _date = 'Table'[Date]
var _month = MONTH(_date)
var _year = YEAR(_date)
return
IF(
_month>=4&&_month<=12,
CONCATENATE("FY",VALUE(FORMAT(_date,"YY"))+1),
IF(
_month<=3&&_month>=1,
CONCATENATE("FY",VALUE(FORMAT(_date,"YY"))+0)
)
)
Result:
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Yuiitsu
Based on your description, I created data to reproduce your scenario.
Table:
Table = CALENDAR(DATE(2018,1,1),DATE(2020,12,31))
You may create a calculated column as below.
finance year =
var _date = 'Table'[Date]
var _month = MONTH(_date)
var _year = YEAR(_date)
return
IF(
_month>=4&&_month<=12,
CONCATENATE("FY",VALUE(FORMAT(_date,"YY"))+1),
IF(
_month<=3&&_month>=1,
CONCATENATE("FY",VALUE(FORMAT(_date,"YY"))+0)
)
)
Result:
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Create an end of year and use
FY = "FY" & format(endofyear([date],"3/31"),"YY")
https://docs.microsoft.com/en-us/dax/endofyear-function-dax
You also have startofyear. That also takes the end date as parameter, if needed
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 33 | |
| 29 | |
| 29 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 68 | |
| 48 | |
| 33 | |
| 24 | |
| 23 |