Are you saying that you want to look in the range of each sheet
for the value that is in Range("F41") of EACH SHEET
or are you looking at the value of F41 on sheet(1) and checking the rest of the 
sheets for THIS value?
 
Paul
-----------------------------------------
“Do all the good you can,
By all the means you can,
In all the ways you can,
In all the places you can,
At all the times you can,
To all the people you can,
As long as ever you can.” - John Wesley
-----------------------------------------




________________________________
From: Eddie <eddiejame...@googlemail.com>
To: MS EXCEL AND VBA MACROS <excel-macros@googlegroups.com>
Sent: Fri, November 4, 2011 8:29:37 AM
Subject: $$Excel-Macros$$ If value found in range macro

Private Sub Worksheet_Change(ByVal Target As Range)

Sheets("1").Select
If Range("f41").Value = Range("g41:g68") Then
ActiveWorkbook.Sheets("1").Tab.ColorIndex = 5
Else
ActiveWorkbook.Sheets("1").Tab.ColorIndex = 6

End If
End Sub

Hi,

Using the above code I'm trying to colour worksheet tabs, determined
by whether (or not) the value F41 appears in the range G41:G68.

NB. the values are dates. I would also like to run this Macro on all
sheets within my workbook i.e not just sheet "1".

Any help very much appreciated.

Ed.

-- 
FORUM RULES (925+ members already BANNED for violation)

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.

2) Don't post a question in the thread of another member.

3) Don't post questions regarding breaking or bypassing any security measure.

4) Acknowledge the responses you receive, good or bad.

5)  Cross-promotion of, or links to, forums competitive to this forum in 
signatures are prohibited. 


NOTE  : Don't ever post personal or confidential data in a workbook. Forum 
owners and members are not responsible for any loss.

------------------------------------------------------------------------------------------------------

To post to this group, send email to excel-macros@googlegroups.com

-- 
FORUM RULES (925+ members already BANNED for violation)

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.

2) Don't post a question in the thread of another member.

3) Don't post questions regarding breaking or bypassing any security measure.

4) Acknowledge the responses you receive, good or bad.

5)  Cross-promotion of, or links to, forums competitive to this forum in 
signatures are prohibited. 

NOTE  : Don't ever post personal or confidential data in a workbook. Forum 
owners and members are not responsible for any loss.

------------------------------------------------------------------------------------------------------
To post to this group, send email to excel-macros@googlegroups.com

Reply via email to