#1   Report Post  
Posted to microsoft.public.excel.newusers
bablu
 
Posts: n/a
Default need help


there are 3 columns in my excel worksheet. some cells in the first two
columns are red in color. these cells match. i want to select the cells
in the third column corresponding to these red cells in the first two
columns and make them red too. after this i want to select all the
cells which are not red in color in these three columns and make a new
worksheet out of them.
Can someone help?


--
bablu
------------------------------------------------------------------------
bablu's Profile: http://www.excelforum.com/member.php...o&userid=33529
View this thread: http://www.excelforum.com/showthread...hreadid=533210

  #2   Report Post  
Posted to microsoft.public.excel.newusers
JMB
 
Posts: n/a
Default need help

Is this along the lines of what you're looking for? I'm assuming your first
two columns are A and B. If both of those cells are red (interior color, not
font color) then it will change the cell in the third column red also. The
second macro will copy anything that does not have a red interior to a new
worksheet. Both macros require you to select the third column before running.


Sub test1()
Dim x As Range

For Each x In Intersect(Selection, _
Selection.Parent.UsedRange)
If Cells(x.Row, "A").Interior.ColorIndex = 3 And _
Cells(x.Row, "B").Interior.ColorIndex = 3 Then _
x.Interior.ColorIndex = 3
Next x

End Sub


Sub test2()
Dim CopyRange As Range
Dim x As Range

For Each x In Intersect(Selection, _
Selection.Parent.UsedRange)
If x.Interior.ColorIndex < 3 Then
If CopyRange Is Nothing Then
Set CopyRange = x
Else: Set CopyRange = Union(CopyRange, x)
End If
End If
Next x

If Not CopyRange Is Nothing Then _
CopyRange.Copy Worksheets.Add.Cells(1, 1)

End Sub


"bablu" wrote:


there are 3 columns in my excel worksheet. some cells in the first two
columns are red in color. these cells match. i want to select the cells
in the third column corresponding to these red cells in the first two
columns and make them red too. after this i want to select all the
cells which are not red in color in these three columns and make a new
worksheet out of them.
Can someone help?


--
bablu
------------------------------------------------------------------------
bablu's Profile: http://www.excelforum.com/member.php...o&userid=33529
View this thread: http://www.excelforum.com/showthread...hreadid=533210


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +1. The time now is 02:47 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"