Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
Suggestion:
Allow Excel users to be able to create a formula to add or subtract any highlighted cell of a certain color. For example, I would like to be able to add or subtract those cells with a yellow background color and not include anything else. |
#2
![]() |
|||
|
|||
![]()
http://www.cpearson.com/excel/colors.htm
-- Kind Regards, Niek Otten Microsoft MVP - Excel "BTaylor" wrote in message ... Suggestion: Allow Excel users to be able to create a formula to add or subtract any highlighted cell of a certain color. For example, I would like to be able to add or subtract those cells with a yellow background color and not include anything else. |
#3
![]() |
|||
|
|||
![]()
Hi
check out http://www.cpearson.com/excel/colors.htm for ideas Cheers JulieD "BTaylor" wrote in message ... Suggestion: Allow Excel users to be able to create a formula to add or subtract any highlighted cell of a certain color. For example, I would like to be able to add or subtract those cells with a yellow background color and not include anything else. |
#4
![]() |
|||
|
|||
![]()
i experimented with this sub
Public Sub test() Dim ssum As Single Dim cell As Range ssum = 0 For Each cell In Range("c1:c7") If cell.Font.ColorIndex = 6 Then ssum = ssum + cell Next MsgBox ssum End Sub may be better solution be available. you can modify to suit you. BTaylor wrote in message ... Suggestion: Allow Excel users to be able to create a formula to add or subtract any highlighted cell of a certain color. For example, I would like to be able to add or subtract those cells with a yellow background color and not include anything else. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I create a formula that would allow me to subtract from a d | New Users to Excel | |||
Create formula | Excel Worksheet Functions | |||
how can i create a formula or format the cells so the answer is a. | Excel Discussion (Misc queries) | |||
How to create a formula in Excel | Excel Worksheet Functions | |||
How do I create a formula in Excel that will countif or sumif bef. | Excel Worksheet Functions |