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 10th, 2002, 11:01 AM   #1
MoltenPoo
New Member
 
Join Date: Apr 2002
Location: New Jersey
Posts: 6
Default

Is there any way to utlized cell formulas to determine cell or text color? For example, if I have data populating A1:A5 and A1:A2 have a fill color of yellow and A3:A5 have a fill color of blue, can I use some formula with a "SUMIF" command to add by color?
MoltenPoo is offline   Reply With Quote
Old May 10th, 2002, 11:10 AM   #2
Nimrod
MrExcel MVP
 
Join Date: Apr 2002
Location: Vancouver BC , Canada
Posts: 6,259
Default

What does the difference in color represent ?
Nimrod is offline   Reply With Quote
Old May 10th, 2002, 12:24 PM   #3
MoltenPoo
New Member
 
Join Date: Apr 2002
Location: New Jersey
Posts: 6
Default

In this case, the colors represetn different categories of taxes. I realize that I can set up a column of data next to the column with colors and create some unique naming convention next to each color (category) but the list is huge - 35k+ rows so being able to use the colors themselves as the differentiator would be awesome.

Any thoughts? I do not want to use code here if at all possible, that's why I asked for a cell formula.
MoltenPoo is offline   Reply With Quote
Old May 10th, 2002, 12:57 PM   #4
Nimrod
MrExcel MVP
 
Join Date: Apr 2002
Location: Vancouver BC , Canada
Posts: 6,259
Default

Sorry I've can't find anything that will allow you to do a sumif by color. I could write you a small program that would add a new column with a variable for each color.
Then you could base you sumif criteria of this new row.
Nimrod is offline   Reply With Quote
Old May 10th, 2002, 01:04 PM   #5
MoltenPoo
New Member
 
Join Date: Apr 2002
Location: New Jersey
Posts: 6
Default

Thanks for looking. While I really do not want to use code I suppose it wouldn't hurt to take a look. What would the small proggie look like - If it's not a problem?

[ This Message was edited by: MoltenPoo on 2002-05-10 12:05 ]
MoltenPoo is offline   Reply With Quote
Old May 10th, 2002, 01:27 PM   #6
Joe Was
MrExcel MVP
 
Joe Was's Avatar
 
Join Date: Feb 2002
Location: Central Florida, USA
Posts: 7,541
Default

This is a macro to find colored cells. It may get you started. You can add code to copy data from a range to another location or operate on each found item. JSW

Sub myColor()
'By Joe Was
Dim myRowNum As Long
myRowNum = ActiveSheet.UsedRange.Rows.Count
Selection.Select
Do Until Selection.Row = myRowNum + 1
'Look for any cell row with a background color.
If Selection.Interior.ColorIndex <> xlNone Then
'To select entire row, un-comment below!
'Selection.EntireRow.Select
GoTo mySelect
Else
Selection.Offset(1, 0).Select
End If
Loop
End
mySelect:

End Sub
Joe Was is offline   Reply With Quote
Old May 10th, 2002, 03:50 PM   #7
MoltenPoo
New Member
 
Join Date: Apr 2002
Location: New Jersey
Posts: 6
Default

THANKS!
MoltenPoo is offline   Reply With Quote
Old May 10th, 2002, 04:17 PM   #8
Nimrod
MrExcel MVP
 
Join Date: Apr 2002
Location: Vancouver BC , Canada
Posts: 6,259
Default

So I've written you a little Function called "ColorSumIf" . Put this function in any cell in your spreadsheet and it will sum all the numbers in a specific color of cell. With the formula you indicate a cell in the row you want to total ( that is the correct color) and it will return the sum.

Example : lets say you want to total all the cells in Col C that were red and C4 is a red cell.
Then just type in the following function into any cell.. other then one in row C.

= ColorSumIf(4,3)
( ie: ColorSumIf(RowRef,ColRef))

Before attempting this you must insert the following code into your workbook.
Code:
Public Function ColorSumIf(Rw, Cm)
Do
rwIndex = rwIndex + 1
        With Cells(rwIndex, Cm)
            If .Interior.ColorIndex = Cells(Rw, Cm).Interior.ColorIndex Then
                ColorSumIf = ColorSumIf + .Value
            End If
        End With
Loop Until Len(Trim(Cells(rwIndex, Cm).Value)) = 0
End Function
To insert code
1- right click on worksheet name tab
2- select view code
3- editor window will open
4- click on "insert" on editor toolbar
5- select insert module
6- paste in the code from here

[ This Message was edited by: Nimrod on 2002-05-10 15:18 ]

[ This Message was edited by: Nimrod on 2002-05-10 15:20 ]

[ This Message was edited by: Nimrod on 2002-05-10 15:26 ]
Nimrod is offline   Reply With Quote
Old May 10th, 2002, 06:38 PM   #9
Nimrod
MrExcel MVP
 
Join Date: Apr 2002
Location: Vancouver BC , Canada
Posts: 6,259
Default

ColorSumIf...Version 2

In this version the Function takes the color from the cell its in. The only parameter you give to it is the number of the column you want evaluated:

For example if you want to have your answer in D2 for the Column C Red Cells then you enter the following Function in D2:
=ColorSumIf(3)
AND make the color of D2 RED.

Here is the code for this version:
Code:
Public Function ColorSumIf(Cm)
Do
rwIndex = rwIndex + 1
        With Cells(rwIndex, Cm)
            If .Interior.ColorIndex = ActiveCell.Interior.ColorIndex Then
                ColorSumIf = ColorSumIf + .Value
            End If
        End With
Loop Until Len(Trim(Cells(rwIndex, Cm).Value)) = 0

End Function
Nimrod is offline   Reply With Quote
Old May 10th, 2002, 07:30 PM   #10
Lo Lun To
 
Join Date: May 2002
Posts: 8
Default

I think a VBA solution would the best, but here's a non-VBA way.

- Define a name (lets say Clr) and type in the RefersTo box =GET.CELL(38,INDIRECT("rc[-1]",FALSE))

- Insert a new column immediately after column A.

- In the new column put in cells B1:B5 =Clr

Cells B1:B5 will then show the ref numbers for the fill-colours used for A1:A5

You can then use the numbers in B1:B5 for your SUMIF formula.

Column B could be kept hidden.

Note : The formulas in column B will only update on a sheet recalculation.
Lo Lun To 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 10:00 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