I have a sheet with separate data fields to create stacked bar charts in my dashboard (one pictured below). I would like to highlight the month/year with the highest value on the dashboard with sheet summary metrics. I have a sheet summary field (Most Sales in a Month) to calculate the highest value using =MAX([FY2023]2:[FY2027]13).
Is there a way to have another sheet summary field that would pull the Month and FY? In the pictured example, it would be February FY 2026. So far I have tried these formulas to pull the FY or Month separately so I can concatenate the results but all result in errors:
=INDEX([FY2023]1:[FY2027]1, MATCH([Most Sales in a Month]#, [FY2023]2:[FY2027]13))
=INDEX([FY2023]2:[FY2027]13, MATCH([Most Sales in a Month]#, [FY2023]1:[FY2027]13, 0))
=INDEX([Month]2:[Month]13, MATCH([Most Sales in a Month]#, [FY2023]2:[FY2027]13, 0))