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 Mar 29th, 2002, 04:40 PM   #1
RET79
Board Regular
 
Join Date: Mar 2002
Location: England, UK.
Posts: 526
Default

Hi.

I have a spreadsheet, with many columns. For instance here are two typical columns

FundType Code YV FundValue
A 2 3 24.3
A 3 4 43.2
A 3 -6 56.7
A 3 -2 23.53
B 1 2 28.90
B 1 5 54.3
B 1 -5 -56.3
B 2 2 -100.5


Now, just as a bit of background, I put these into a pivot table to get summaries for such data under different classes.
For example, my pivot table would calculate the sum of FundValue for FundType B and Code 1 (in the example above it would be 26.90, and so on).However, I need to find the sum of FundValue for different subsets of YV. For example, I need the pivot table to give me the FundValue for FundType B, Code 1 for -2
At present, I have to insert a column in my initial spreadsheet, and put an IF function such as IF(YV<3, IF(YV>-2, FundValue,""),"") and then import this column into the pivot table. Although this works fine, I would rather not have to insert any extra columns into my initial spreadsheet, I would prefer the pivot table to be doing all the calculations as I have many of these conditional columns I need to sum.

I'm sure there is a way, I would be grateful for any advice. Thanks.



[ This Message was edited by: RET79 on 2002-03-29 16:17 ]
RET79 is offline   Reply With Quote
Old Mar 29th, 2002, 05:34 PM   #2
RET79
Board Regular
 
Join Date: Mar 2002
Location: England, UK.
Posts: 526
Default

My message again, did not let me edit it for some reason:

Hi.

I have a spreadsheet, with many columns. For instance here are some typical columns

FundType Code YV FundValue
A 2 3 24.3
A 3 4 43.2
A 3 -6 56.7
A 3 -2 23.53
B 1 2 28.90
B 1 5 54.3
B 1 -5 -56.3
B 2 2 -100.5


Now, just as a bit of background, I put these into a pivot table to get summaries for such data under different classes.
For example, my pivot table would calculate the sum of FundValue for FundType B and Code 1 (in the example above it would be 26.90, and so on).However, I need to find the sum of FundValue for different subsets of YV. For example, I need the pivot table to give me the FundValue for FundType B, Code 1 for 3 > YV > -2. In the example above this would give me a total of 28.90 .

At present, I have to insert a column in my initial spreadsheet, and put an IF function such as IF(YV<3, IF(YV>-2, FundValue,""),"") and then import this column into the pivot table. Although this works fine, I would rather not have to insert any extra columns into my initial spreadsheet, I would prefer the pivot table to be doing all the calculations as I have many of these conditional columns I need to sum.

I'm sure there is a way, I would be grateful for any advice. Thanks.

RET79 is offline   Reply With Quote
Old Mar 30th, 2002, 10:48 AM   #3
RET79
Board Regular
 
Join Date: Mar 2002
Location: England, UK.
Posts: 526
Default

Hi, did anyone have any ideas about this particular query?

(Just askin!)

RET79
RET79 is offline   Reply With Quote
Old Mar 30th, 2002, 04:19 PM   #4
Aladin Akyurek
MrExcel MVP
 
Aladin Akyurek's Avatar
 
Join Date: Feb 2002
Location: The Hague
Posts: 50,317
Default

I have a spreadsheet, with many columns. For instance here are some typical columns

FundType Code YV FundValue
A 2 3 24.3
A 3 4 43.2
A 3 -6 56.7
A 3 -2 23.53
B 1 2 28.90
B 1 5 54.3
B 1 -5 -56.3
B 2 2 -100.5


Now, just as a bit of background, I put these into a pivot table to get summaries for such data under different classes.
For example, my pivot table would calculate the sum of FundValue for FundType B and Code 1 (in the example above it would be 26.90, and so on).However, I need to find the sum of FundValue for different subsets of YV. For example, I need the pivot table to give me the FundValue for FundType B, Code 1 for 3 > YV > -2. In the example above this would give me a total of 28.90 .

At present, I have to insert a column in my initial spreadsheet, and put an IF function such as IF(YV<3, IF(YV>-2, FundValue,""),"") and then import this column into the pivot table. Although this works fine, I would rather not have to insert any extra columns into my initial spreadsheet, I would prefer the pivot table to be doing all the calculations as I have many of these conditional columns I need to sum.

I'm sure there is a way, I would be grateful for any advice.


Although I think you'd be better off sticking with the Pivot Tables, what follows might be of use either in conjunction with Pivot Tables or stand alone.

I'll assume that A1:D9 houses the sample data you provided. Everything below take place in the same sheet, while it can be very easily in a separate worksheet.

In F3 enter:

=MATCH(9.99999999999999E+307,D:D)-1

Enter the unique codes that you have in F from F4 on. It would look like this for the sample data:

{"Code";
1;
2;
3}

This unique list can be created by using e.g., Adv Filter.

Enter the unique fund types that you have in row 4 from G4 on. It would look like this for the sample data:

{"A","B"}

In G5 enter:

=SUMPRODUCT((OFFSET($B$2,0,0,$F$3,1)=$F5)*(OFFSET($A$2,0,0,$F$3,1)=G$4),OFFSET($D$2,0,0,$F$3,1))

Copy this across to H5 and copy down.

The foregoing will give you the total of fund values for FundType by Code.

In I1:I4 enter:

{"YV";
-2;
3;
"B"}

which are params of a specific query that you mention.

In I5 enter:

=SUMPRODUCT((OFFSET($B$2,0,0,$F$3,1)=$F5)*(OFFSET($A$2,0,0,$F$3,1)=I$4)*(OFFSET($C$2,0,0,$F$3,1)>$I$2)*(OFFSET($C$2,0,0,$F$3,1)<$I$3),OFFSET($D$2,0,0,$F$3,1))

The processing area will look like this:

{"","","","YV";
"","","",-2;
8,"","",3;
"Code","A","B","B";
1,0,26.9,28.9;
2,24.3,-100.5,"";
3,123.43,0,""}

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

Thanks Aladdin for your suggestion, it is certainly an interesting alternative especially so that I coudl leave the original data intact one on sheet with all the calcs taking place on another sheet.
I like it, thanks.

RET79
RET79 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 06:56 AM.


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