Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello,
I have columns FY and Month column and would like to create column CY.
| Fy | Month | CY |
| 2022 | Oct | 2021 |
| 2022 | Nov | 2021 |
| 2022 | Dec | 2021 |
| 2022 | Jan | 2022 |
| 2022 | Feb | 2022 |
| 2023 | Oct | 2022 |
| 2023 | Nov | 2022 |
| 2023 | Dec | 2022 |
| 2023 | Jan | 2023 |
| 2023 | Feb | 2023 |
Solved! Go to Solution.
Hi , @orana
Accoring to your descriprion , you want to create column CY.
And for your data , it seems only the "Oct,Nov and Dec“ return the last year.
If this , you can just use the IF() function to judge.
You can click "New Column" and enter this:
Column = IF([Month] in {"Oct","Nov","Dec"},[Fy]-1,[Fy])
Then we can get the result like this:
Thank you for your time and sharing, and thank you for your support and understanding of PowerBI!
Best Regards,
Aniya Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi , @orana
Accoring to your descriprion , you want to create column CY.
And for your data , it seems only the "Oct,Nov and Dec“ return the last year.
If this , you can just use the IF() function to judge.
You can click "New Column" and enter this:
Column = IF([Month] in {"Oct","Nov","Dec"},[Fy]-1,[Fy])
Then we can get the result like this:
Thank you for your time and sharing, and thank you for your support and understanding of PowerBI!
Best Regards,
Aniya Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 61 | |
| 54 | |
| 41 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 97 | |
| 83 | |
| 35 | |
| 29 | |
| 25 |