Related:
- Help please (Excel)
- Excel marksheet - Guide
- Excel free download - Download - Spreadsheets
- Number to words in excel - Guide
- Kernel for excel - Download - Backup and recovery
- Excel date format dd.mm.yyyy - Guide
2 responses
vpnserver
Posts
14
Registration date
Tuesday August 19, 2008
Status
Member
Last seen
February 22, 2009
1
Aug 26, 2008 at 05:13 AM
Aug 26, 2008 at 05:13 AM
yes i think you can do that but if its not good then try to see in the help file there must be something for your problem
see you
see you
Cool man but I got it working.
This is the code I used:
If Range("I27").Value <= 40 Then
Range("F27").Interior.ColorIndex = 3
Else
If Range("I27").Value > 40 Then
If Range("I27").Value < 80 Then
Range("F27").Interior.ColorIndex = 6
Else
If Range("I27").Value >= 80 Then
Range("F27").Interior.ColorIndex = 4
End If
End If
End If
End If
Not to bad for a Novice vba coder, hehe.... Working like a charm...
This is the code I used:
If Range("I27").Value <= 40 Then
Range("F27").Interior.ColorIndex = 3
Else
If Range("I27").Value > 40 Then
If Range("I27").Value < 80 Then
Range("F27").Interior.ColorIndex = 6
Else
If Range("I27").Value >= 80 Then
Range("F27").Interior.ColorIndex = 4
End If
End If
End If
End If
Not to bad for a Novice vba coder, hehe.... Working like a charm...