Hi
My life of late is trying to decipher a workbook designed by someone else who is not around to ask questions of! I'm working in Excel 2003.
So what does {MATCH(1,--(B9:B29<>""),0)} do?
B9 to B29 is a column of dates. The cell above is used in a named range field which I'm using in a graph (above is B5):
CODE
offset(Graph_Data!$B$9,Graph_Data!$B$5-1,0,Graph_Data!$B$6)
The problem is that the formula and graphs are a week behind. What I mean is that if the current date in the worksheet isn't a full week (so July 17) then there won't be a date for B29 on the graph_data worksheet (which makes sense - all the data being plotted is weekly). But if I select a date farther back, say July 11 which is the end of a week, then there is a date and data produced on row 29 for that date but because of the offset above of 1, it only includes B9 to B28.
So how do I indicate to include all when there are entries in B? Thanks.
My life of late is trying to decipher a workbook designed by someone else who is not around to ask questions of! I'm working in Excel 2003.
So what does {MATCH(1,--(B9:B29<>""),0)} do?
B9 to B29 is a column of dates. The cell above is used in a named range field which I'm using in a graph (above is B5):
CODE
offset(Graph_Data!$B$9,Graph_Data!$B$5-1,0,Graph_Data!$B$6)
The problem is that the formula and graphs are a week behind. What I mean is that if the current date in the worksheet isn't a full week (so July 17) then there won't be a date for B29 on the graph_data worksheet (which makes sense - all the data being plotted is weekly). But if I select a date farther back, say July 11 which is the end of a week, then there is a date and data produced on row 29 for that date but because of the offset above of 1, it only includes B9 to B28.
So how do I indicate to include all when there are entries in B? Thanks.