Dynamic Fiscal Year Date Table using DAX in Power BI

Поділитися
Вставка
  • Опубліковано 20 гру 2024

КОМЕНТАРІ • 7

  • @charlenebowman9112
    @charlenebowman9112 2 місяці тому +1

    Thank you Amelia 🙂

  • @nakuldeep7336
    @nakuldeep7336 5 днів тому

    if we have 3 dates columns in order table which datecolumn autocalender pickup

  • @prashantparab2482
    @prashantparab2482 25 днів тому

    Nice Information! How can we calculate Fiscal Year over Year % growth ? example I have 4 Fiscal years to compare % growth in Volumes for more than 300 customers and we have info of volumes for every moth for 4 FY years.

  • @PR0SHOTCOAH
    @PR0SHOTCOAH 5 місяців тому +1

    thank you but how would i like this to my other data with the dates?

  • @garrettbenson3789
    @garrettbenson3789 2 місяці тому +2

    Fiscal Year =
    VAR _CurrYear = YEAR('Fiscal Year Date Table'[Date])
    VAR _NextYear = _CurrYear + 1
    VAR _PrevYear = _CurrYear -1
    VAR CurrYearShort = FORMAT (_CurrYear, "0000")
    VAR NextYearShort = FORMAT (_NextYear, "0000")
    VAR PrevYearShort = FORMAT (_PrevYear, "0000")
    RETURN
    SWITCH(
    TRUE(),
    MONTH('Fiscal Year Date Table'[DATE]) >=4,
    CurrYearShort & "-" & NextYearShort,
    PrevYearShort & "-" & CurrYearShort
    )

  • @MohanMohan-zg9mr
    @MohanMohan-zg9mr 4 місяці тому

    Hello