Thread: formatting
View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.newusers
Don Guillett Don Guillett is offline
external usenet poster
 
Posts: 10,124
Default formatting

Specify your range.
for each c in range("a2:x22")

If desired, send your workbook to my address and I'll take a look.

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Rasoul Khoshravan" wrote in message
...
On Feb 21, 5:02 pm, "Don Guillett" wrote:
Change color numbers to suit
Sub colorcells()
Dim c As Range
For Each c In Selection
If c.HasFormula Then
c.Interior.ColorIndex = 4
Else
c.Interior.ColorIndex = 6
End If
Next c
End Sub

--
Don Guillett
Microsoft MVP Excel
SalesAid Software
"KRK" wrote
in message

...

Hi, is it possible to automatically display those cells with a formula
with a different format. Eg I would like 'input' cells in green, and
'calculated' cells in red. Thanks.


Hio can we change this macro, so that it automatically recognizes
where the data resides and do it itself, instead of selecting the
range by operator