Forum Discussion
Changing Years
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 |
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
1 Reply
- v-yueyunzh-msftCommunity Support
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