Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
In Excel 2000 - I need to create a formula or macro that will pull values,
from a column, based on color (or text if color won't work). Conditional formatting will color a cell based on a condition but I need to be able to define a condition based on either color. For example, a specific color is in cell a1, a3, & a5 the value is in a2, a4, & a6. I need to create a formula or macro in cell a7 that will add the values from a2, a4, & a6 based on the condition (color) in cell a1, a3, & a5. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() This is very crude, I hope it helps. I use the light yellow color as base, change as needed Sub Macro1() Dim temp As Integer If Range("A1").Interior.ColorIndex = 36 Then temp = temp + Range("A2").Value If Range("A3").Interior.ColorIndex = 36 Then temp = temp + Range("A4").Value If Range("A5").Interior.ColorIndex = 36 Then temp = temp + Range("A6").Value Range("A7") = temp End Sub -- Bearacade ------------------------------------------------------------------------ Bearacade's Profile: http://www.excelforum.com/member.php...o&userid=35016 View this thread: http://www.excelforum.com/showthread...hreadid=556136 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Convert Excel 4 formula to Excel 2003 format | Excel Worksheet Functions | |||
TRYING TO SET UP EXCEL SPREADSHEET ON MY COMPUTER | New Users to Excel | |||
after creating macro button, closed excel then restarted excel | Excel Discussion (Misc queries) | |||
Creating an EXCEL COUNTIF formula for a range of values | Excel Discussion (Misc queries) | |||
Help with macro formula and variable | Excel Worksheet Functions |