Forum Discussion

michaelsparrow's avatar
9 years ago
Solved

X-axis data labels

      Hi,   I am trying to put FY 2016 in a graph instead of 2016. As of now I can only name the 'X-axis Title' Financial Year. But I want to put it beside the actual number. Any idea how ...
  • Sean's avatar
    9 years ago

    michaelsparrow  it looks like you already have Fiscal Year and Fiscal Month Columns (and the months seem to be sorted correctly)

    If this is the case all you need is to add the "FY" to the Fiscal Year Column like this...

    Fiscal Year =
    IF (
        MONTH ( 'Calendar'[Date] ) > 6,
        "FY " & YEAR ( 'Calendar'[Date] ) + 1,
        "FY " & YEAR ( 'Calendar'[Date] )
    )

    Then create your chart placing the fields as in the picture, expand at the lowest level and turn off concatenate labels

    This should do it! :smileyhappy: