Forum Discussion
AmyEH
Oct 21, 2020Copper Contributor
Stacked column chart creation - data reconfiguration
How do I rearrange this data in the most efficient way to create a stacked column chart from it? The dates will be along the x-axis. The phytoplankton concentration (cells/mL) will be on the y-axis...
- Oct 23, 2020
AmyEH Perhaps like in the attached file? Not sure though what you mean by "transpose group names as column headers".
AmyEH
Oct 24, 2020Copper Contributor
PeterBartholomew1 I don't think I have access to Excel 365, so this is only so helpful. Thanks for offering advice!
PeterBartholomew1
Oct 24, 2020Silver Contributor
I see your point! It is possible to replace
= UNIQUE(Data[Date])
by
= SMALL(
IF(
MATCH(Data[Date],Data[Date],0)=ROW(Data[Date])-1,
Data[Date]
),
k )
but such a formula is such a dog by comparison that I decided it was time to dump my old Excel licence! Now virtually every formula I write is a dynamic array formula. It did mean moving to a subscription license though.
Anyway, I am pleased you got the Pivot Table / Chart to come to order!