MrExcel Message Board

Go Back   MrExcel Message Board > Question Forums > Excel Questions

Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only.

Reply
 
Thread Tools Display Modes
Old May 6th, 2002, 02:36 PM   #1
RET79
Board Regular
 
Join Date: Mar 2002
Location: England, UK.
Posts: 526
Default

Hi.

I apologise for asking this question, this is something I should know but I can't seem to get it working.

I have two columns: date, fund value starting from D6:E6 downwards. I will be adding the data every know and then and want to base a line graph on it.

I don't know what to put as a reference in the chart wizard, I suspect it's something alone the lines of OFFSET(D6,0,0,count(d:d),1). Also what forumla would you put so that the x axis contains the dates.

thanks,

RET79
RET79 is offline   Reply With Quote
Old May 6th, 2002, 03:02 PM   #2
Aladin Akyurek
MrExcel MVP
 
Aladin Akyurek's Avatar
 
Join Date: Feb 2002
Location: The Hague
Posts: 50,317
Default

Quote:
On 2002-05-06 13:36, RET79 wrote:
Hi.

I apologise for asking this question, this is something I should know but I can't seem to get it working.

I have two columns: date, fund value starting from D6:E6 downwards. I will be adding the data every know and then and want to base a line graph on it.

I don't know what to put as a reference in the chart wizard, I suspect it's something alone the lines of OFFSET(D6,0,0,count(d:d),1). Also what forumla would you put so that the x axis contains the dates.

thanks,

RET79
I'll assume that the worksheet that houses your data is called Data in what follows (Adjust the sheet name to suit).

Activate the option Insert|Name|Define.
Enter NumRecs as name in the Names in Workbook box.
Enter as formula in the Refers to box:

=MATCH(9.99999999999999E+307,Data!$D:$D)

Activate Add. (Don't leave yet the Define Name window.)

Enter DataRecs as name in the Names in Workbook box.
Enter as formula in the Refers to box:

=NumRecs-(ROW(Data!$D$6)-1)

Activate Add. (Don't leave yet the Define Name window.)

Enter Dates as name in the Names in Workbook box.
Enter as formula in the Refers to box:

=OFFSET(Data!$D$6,0,0,DataRecs,1)

Activate Add. (Don't leave yet the Define Name window.)

Enter Funds as name in the Names in Workbook box.
Enter as formula in the Refers to box:

=OFFSET(Data!$E$6,0,0,DataRecs,1)

Activate Add. (Don't leave yet the Define Name window.)

Enter DataBase as name in the Names in Workbook box.
Enter as formula in the Refers to box:

=OFFSET(Data!$D$6,0,0,DataRecs,2)

Activate OK.

The above set up is such that dynamic name ranges includes also the labels, something that the Chart Wizard needs to know.

Aladin



[ This Message was edited by: aladin akyurek on 2002-05-06 14:45 ]
Aladin Akyurek is offline   Reply With Quote
Old May 6th, 2002, 03:21 PM   #3
RET79
Board Regular
 
Join Date: Mar 2002
Location: England, UK.
Posts: 526
Default

Aladin,

Thanks for your reply.

However I am still having difficulty getting this thing to work - I had the data labels in D6:E6 then the data itself from D7:E7 down which I didn't explain too well earlier.

Now, when I start the chart wizard, I assume that I put =Database in the data range place, could you perhaps confirm to me where the other ones go?

Sorry I am a complete novice when it comes to this stuff

RET79
RET79 is offline   Reply With Quote
Old May 6th, 2002, 03:54 PM   #4
Aladin Akyurek
MrExcel MVP
 
Aladin Akyurek's Avatar
 
Join Date: Feb 2002
Location: The Hague
Posts: 50,317
Default

Quote:
On 2002-05-06 14:21, RET79 wrote:
Aladin,

Thanks for your reply.

However I am still having difficulty getting this thing to work - I had the data labels in D6:E6 then the data itself from D7:E7 down which I didn't explain too well earlier.

Now, when I start the chart wizard, I assume that I put =Database in the data range place, could you perhaps confirm to me where the other ones go?

Sorry I am a complete novice when it comes to this stuff [img]/board/images/smiles/icon_frown.gif[/img]

RET79
=NumRecs-(ROW(Data!$D$6))

must be:

=NumRecs-(ROW(Data!$D$6)-1) [ now edited ]

Otherwise you'd lose the last data row.

Now, when I start the chart wizard, I assume that I put =Database in the data range place, could you perhaps confirm to me where the other ones go?

Depends on the type of chart that you want to make. I gave DataBase as value of Data Range.

Aladin
Aladin Akyurek is offline   Reply With Quote
Old May 6th, 2002, 04:04 PM   #5
RET79
Board Regular
 
Join Date: Mar 2002
Location: England, UK.
Posts: 526
Default

Thanks again Aladin.

I am having difficulty creating this dynamic chart - I want a line chart. In the datarange thing I have put Database. I tried putting =funds in the Values: and =dates in the X-axis labels place but it won't accept either

Do you get this problem??

Thanks again,

RET79
RET79 is offline   Reply With Quote
Old May 6th, 2002, 06:39 PM   #6
Aladin Akyurek
MrExcel MVP
 
Aladin Akyurek's Avatar
 
Join Date: Feb 2002
Location: The Hague
Posts: 50,317
Default

I am having difficulty creating this dynamic chart - I want a line chart. Do you get this problem??

Yeah, me too. I forgat all about that charts don't accepts name ranges (dynamic or not). Then I suddenly remembered Stephen Bullen's work on dynamic charts (brought to my attention by Kristel, many thanks for that).

The previous definitions cannot be used as such in charting, keep them around anyway. I have strongly the impression that the Pivot Chart Wizard is able to use defined name range DataBase as would the Pivot Report.

Bullen's Steps for a Dynamic Chart

Here is a sample data that appears in D6:E25.

{"Date","Fund";
37257,500;
37264,249;
37271,345;
37278,654;
37285,287;
37292,658;
37299,347;
37306,987;
37313,238;
37320,456;
37327,675;
37334,435;
37341,536;
37348,237;
37355,679;
37362,347;
37369,600;
37376,600;
37383,800}

E6 houses as you can see Fund.

(1)

In E6 (yes, E6) enter:

="Funds"&TEXT(NOW(),"")

Bullen's explanation: "This formula is required to force the chart to update each time the sheet is recalculated. It is referenced by the chart as the series name."

I'll still assume that the worksheet that houses the data is called Data in what follows (Adjust the sheet name to suit).

(2)

Activate the option Insert|Name|Define.
Enter NumRecs as name in the Names in Workbook box.
Enter as formula in the Refers to box:

=MATCH(9.99999999999999E+307,Data!$D:$D)

Activate Add. (Don't leave yet the Define Name window.)

(3)

Enter DRows as name in the Names in Workbook box.
Enter as formula in the Refers to box:

=NumRecs-(ROW(Data!$D$6))

Activate Add. (Don't leave yet the Define Name window.)

(4)

Enter Cht_X_Values as name literally in the Names in Workbook box.
Enter as formula in the Refers to box:

=OFFSET(Data!$D$6,1,0,DRows,1)

Activate Add. (Don't leave yet the Define Name window.)

(5)

Enter Cht_Y_Values as name literally in the Names in Workbook box.
Enter as formula in the Refers to box:

=OFFSET(Data!$E$6,1,0,DRows,1)

Activate OK.

(6)

Activate the Chart Wizard.

(7)

Enter as Data range on the Data Range tab in the Source Data window:

=Data!$D$6:$E$25 [ The initial data range ]

Check Columns for Series in.

(8)

On the Seies tab:

Series box will show: Funds

keep it.

Enter for Name:

=Data!$E$6

Enter for Values:

=Cht_Y_Values

Enter for Category (X) axis labels:

=Data!Cht_X_Values [ Added the sheet name at Edit ]

You're done. You have a Line Chart.

Add a date value to D and a Fund value to E and watch what happens to the chart.

Note. Don't ask -- I don't know how Bullen has figured out all this.

Aladin




[ This Message was edited by: Aladin Akyurek on 2002-05-06 17:42 ]

[ This Message was edited by: aladin akyurek on 2002-05-06 22:50 ]
Aladin Akyurek is offline   Reply With Quote
Old May 6th, 2002, 07:14 PM   #7
RET79
Board Regular
 
Join Date: Mar 2002
Location: England, UK.
Posts: 526
Default

Argghhhh, it won't accept =Cht_Y_Values
in the values box.

Do you get this problem? For which line chart does this apply?

RET79
RET79 is offline   Reply With Quote
Old May 6th, 2002, 07:24 PM   #8
RET79
Board Regular
 
Join Date: Mar 2002
Location: England, UK.
Posts: 526
Default

OK, I have sorted the problem - just for the record remember to put =Data!Cht_X_Values not =Cht_X_Values

Aladin, thanks for your help, wow this is so handy now,

RET79
RET79 is offline   Reply With Quote
Old May 6th, 2002, 11:58 PM   #9
Aladin Akyurek
MrExcel MVP
 
Aladin Akyurek's Avatar
 
Join Date: Feb 2002
Location: The Hague
Posts: 50,317
Default

just for the record remember to put =Data!Cht_X_Values not =Cht_X_Values

Lost it at the Copy and Paste stage of a long night . Somehow Excel needs that at the initial stage, thereafter prefixes those internal chart variables by the filename.

Aladin

[ This Message was edited by: Aladin Akyurek on 2002-05-06 23:00 ]
Aladin Akyurek is offline   Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On

Forum Jump


All times are GMT -4. The time now is 03:08 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
All contents Copyright 1998-2012 by MrExcel Consulting.
diabetic desserts recipes recipes Diabetic Soups Holiday Pizza Recipes Popcorn Recipes Recipes For Microwave Pasta Recipes Casserole Recipes Chili Recipes Curry Recipes Crockpot Recipes Apples Recipes Bread Recipes Vegetarian Recipes Vegetable recipes Desserts Recipes Appetizers Ethnic Recipes Meat Dishes Barbecue Recipes Sauces Recipes Marinade Recipes Low Fat Recipes Frugal Gourmet Kitchen Classics Recipes On The Grill Cook Books Seafood Recipes Cajun Recipes Breads Low Fat Low Fat Breads Bread Machine Recipes Yeast Breads Quick Breads Fat Free Vegetarian Salad Recipes Eggplant Recipes Radish Recipes Tomato Recipes Jalapeno Recipes Potato Recipes Lettuce Recipes Cabbage Recipes Beans Ambrosia Recipes Biscotti Recipes Desserts Low Fat Cookie Recipes Cheesecake Recipes Cake Recipes Pie Recipes Muffin Recipes Custard Recipes Best Appetizers Appetizers Low Fat Salsa Recipes Dip Recipes International Recipes Afghan Recipes Alaska Recipes French Recipes German Recipes Greek Recipes Italian Recipes Spanish Recipes Thai Recipes Korean Recipes Chinese Recipes Mexican Recipes Indian Recipes Beef Recipes Pork Pork & Ham Pork Butts Pork Chop Recipes Pork Ribs Rulled Pork Poultry Recipes Stews Recipes Ground Beef Barbecue Grill Barbecue Smoker All Purpose Sauce BBQ Sauce Barbecue Sauce Carolina BBQ Sauce Pickle Recipes Marinades Smoking Low Fat Appetizers & Dips Low Fat Breakfast Low Fat Cakes Low Fat Cheesecakes Low Fat Cookies Low Fat Desserts Low Fat Fish & Seafood Low Fat Meats Low Fat Pasta Low Fat Pies Low Fat Salads Low Fat Sandwiches Low Fat Sauces & Condiments Low Fat Sides Low Fat Soups Low Fat Vegetarian Baker's Dozen Taste of Home Recipe Book Bon Appetit Cookbook Blacktie Cookbook Buster Cook Book Cookbook USA Cook Book Cook Book Sara's Cookbook Sara's Cookbook Appetizers and Dips Poultry recipes Diabetic recipes Holiday recipes Miscellaneous recipes 110 recipes 1986 Usenet cookbook 2900 recipes Cyberrealm recipes Great sysops of world Specialty recipes Ceideburg recipes Cheese recipes Chili recipes Fruits recipes Garlic recipes Great chefs of NY Londontowne recipes Raisins recipes Recipes for kids US Food Vegetarian recipes Bread recipes Drinks Meat Dishes Brisket recipes Caribou recipes Chicken recipes Filet mignons recipes Pork recipes Swordfish recipes Turkey recipes Pasta recipes Uncategorized recipes Ethnic recipes Canada recipes English recipes Ethiopia recipes Germany recipes Greece recipes Mexican recipes Philippines recipes Welsh recipes Microwave recipes Soups recipes Vegetable recipes Asparagus recipes Barley recipes Brown rice recipes Lentil recipes Mushrooms recipes Salads recipes Wild rice Desserts recipes Cakes recipes Chocolate recipes Cookies recipes Ice cream recipes