Graph by Date

russthedutch

New Member
Joined
Jan 16, 2015
Messages
7
Office Version
  1. 365
Platform
  1. Windows
Hi, I wonder if you can help me - I've got financial statements in a list (exported from online banking) and I've got a system where I 'tag' each spend with a dropdown menu. What I want to do is have a visual representation of the spend by category in graph form. I'm trying to get Excel to graph the required data only if the date is between 1-31 of a month in the data range. Also, I'd like to get it to graph a comparison of previous months. How do I get Excel to graph by date range?

Thanks.
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
you have to tell excel what to graph

say you have 12 months jan thru to dec with spend figures

if you want to graph say aug to oct then you use offset and match to isolate aug to oct
rejected months spend should be na() Not blank or zero because excel with plot those as zeros
 
Upvote 0
Thanks - so if I have a =date(month) expression in one cell (to give me e.g. "10" for October) then build an if statement where date >= 1 or <= 31 and month = 10, then sumif the value per category - will this work?
 
Upvote 0
jan in D9
janfebmaraprmayjun julaugsepoctnovdec
789101112131415161718
task plot apr to july
apr is month 44
jul is month 77
1 in D24
123456789101112
janfebmaraprmayjun julaugsepoctnovdec
#N/A#N/A#N/A10111213#N/A#N/A#N/A#N/A#N/A
formula under january
=IF(D24<$H$19,NA(),IF(D24>$H$20,NA(),D10))
so inputting the 4 and 7 gives you data ready for the chart

<colgroup><col width="64" span="14" style="width:48pt"> </colgroup><tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,216,150
Messages
6,129,154
Members
449,488
Latest member
qh017

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top