Forum Discussion

Syndicate_Admin's avatar
Syndicate_Admin
Administrator
3 years ago
Solved

Create conditional column in calculated table

Hello good people! Thanking you for your support in advancing my knowledge in Power BI, I comment: I have generated a generic table "Date" as follows: Date = CALENDAR( DATE( 2021, 07...
  • Ashish_Mathur's avatar
    3 years ago

    Hi,

    Write this calculated column formula in the Date Table

    Financial Year = if(month(date[Date])>=7,"FY"&Year(date[Date]),"FY"&Year(date[Date])-1)

    Hope this helps.