Simple excel question..

Associate
Joined
3 Dec 2002
Posts
618
Location
Sydney, Australia
Hi guys,

I'm trying to make a simple spreadsheet for the company I work for. Basically they need to enter some data and if a value is outside of a certain range in a column it needs to be flagged up. Ideally this would be done by highlighting the text as a different colour.

I imagine I need to use macros for this but have no real experience of using them. The websites i've looked at and and the in-built help have both been useless too for what I'd expect to be fairly simple.

I'd guess the macro would be something like:

Sub Macro1()
'
' Macro1 Macro

#If (A1 > 3) Then
'. Selection.Font.ColorIndex = 3
#ElseIf (A1 < 0) Then
'. Selection.Font.ColorIndex = 2
#Else
'. Selection.Font.ColorIndex = 0
#End If

End Sub

but I don't know how I can apply that macro to work with a specific column, nor if indeed it'll do what I want it to.

Thanks for any help,

Ben
 
Back
Top Bottom