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.
I dont think this should be too difficult... essentially, I've got a list of projects with associated completion dates in one column and I want to add a calculated column which basically states the academic year they were completed in. Academic year running between Sep 1 and Aug 31. So for example, if the project was completed on April 1, 2020, then it would be part of the academic year ended 2020 and 2020 would be the calendar year value it should spit out. For a project completed on August 31, 2021, that would be part of the academic year ended 2021.
I was thinking of using a nested if statement but no luck with the syntax. Any tips would be greatly appreciated.
Solved! Go to Solution.
try this
NEwColumn =
IF (
MONTH ( TableName[Completion_Date] ) < 9,
YEAR ( TableName[Completion_Date] ) - 1,
YEAR ( TableName[Completion_Date] )
)
|
Please accept the solution when done and consider giving a thumbs up if posts are helpful. Contact me privately for support with any larger-scale BI needs, tutoring, etc. |
Helpful. Thanks
try this
NEwColumn =
IF (
MONTH ( TableName[Completion_Date] ) < 9,
YEAR ( TableName[Completion_Date] ) - 1,
YEAR ( TableName[Completion_Date] )
)
|
Please accept the solution when done and consider giving a thumbs up if posts are helpful. Contact me privately for support with any larger-scale BI needs, tutoring, etc. |
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 | |
12 | |
11 | |
8 | |
7 |