Reformatting Data for a line graph
I have a log of information that's sorted first by division, then by date. it's essentially made so that the first of the month, it will grab the data i need and make a monthly snapshot using the copy row feature. it looks basically like this:
I want to make a line graph that will be one line for each division to show the monthly change per division. to look like this:
From what i understand, to do that, the data will need to look something like this instead:
Is there a way that i could transpose this information? I believe that if i i had the dates already filled in to the 2nd sheet, i could use INDEX(MATCH) to look up and fill it in, but I'm not sure how I would fill all the unique dates into the DATE1 column or is there a better way to do it that I'm not considering.
Thanks in advance!
Answers
-
You are going to need to manually prefill the dates (workaround for keeping the graph clean below).
From there you would use an INDEX/COLLECT to bring the appropriate numbers in.
=INDEX(COLLECT({Source Sheet Number Column}, {Source Sheet Date Column}, @cell = [Date Column]@row, {Source Sheet Division Column}, @cell = "DIV1"), 1)
Then you can create a report that is looking at the reformatted sheet and pulling in all columns. Filtering it to only show rows where the Date column is in the past should give you a dynamically growing chart as time progresses.
-
Thanks for that. It's a bit disappointing though. I was hoping there a way to set it up once and just let it run on it's own.
-
That's pretty much how it works. Since you are only doing monthly breakdowns, you could set up the sheet so that it has room for many many years worth of dates. Enough dates so that if the same system is in place by the time you run out, it may be time for an upgrade anyway.
-
Yeah. It's a great tool for certain things, but some other things, that seem like should be so simple, it can't do.
Thanks
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.5K Get Help
- 424 Global Discussions
- 136 Industry Talk
- 465 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 146 Just for fun
- 63 Community Job Board
- 465 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 301 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!