ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   marking cells that do not have a formula? (https://www.excelbanter.com/excel-programming/273071-marking-cells-do-not-have-formula.html)

Todd[_5_]

marking cells that do not have a formula?
 

I have a worksheet that the formula's are overriden
freeequently (thats the way its supposed to be). Is there
a way to mark the cells that now contain numbers and no
formula? I have a macro that colors cells that contain
formulas. I need the opposite too. Can I modify it?

Sub markformula()
Cells.SpecialCells(xlCellTypeFormulas).Interior.Co lorIndex
= 35
End Sub

TIA

Todd



Ron de Bruin

marking cells that do not have a formula?
 
Hi Todd

Sub test1()
Cells.SpecialCells(xlCellTypeConstants, xlTextValues).Interior.ColorIndex = 3
End Sub

Sub test2()
Cells.SpecialCells(xlCellTypeConstants, xlNumbers).Interior.ColorIndex = 5
End Sub

Try this

The first color the text and the second the numbers

--
Regards Ron de Bruin
(Win XP Pro SP-1 XL2002 SP-2)
www.rondebruin.nl



"Todd" wrote in message ...

I have a worksheet that the formula's are overriden
freeequently (thats the way its supposed to be). Is there
a way to mark the cells that now contain numbers and no
formula? I have a macro that colors cells that contain
formulas. I need the opposite too. Can I modify it?

Sub markformula()
Cells.SpecialCells(xlCellTypeFormulas).Interior.Co lorIndex
= 35
End Sub

TIA

Todd





Gord Dibben[_3_]

marking cells that do not have a formula?
 
Todd

Sub SELECTTEXT()
With Selection
Selection.SpecialCells(xlCellTypeConstants, 2).Select
End With
End Sub

Sub SELECTNUMS()
With Selection
Selection.SpecialCells(xlCellTypeConstants, 1).Select
End With
End Sub

Sub SELECT_FORMULAS()
If Not Selection.HasFormula Then
MsgBox "Cells do not contain formulas"
End
End If
With Selection
Selection.SpecialCells(xlCellTypeFormulas, 23).Select
End With
End Sub


Gord Dibben Excel MVP - XL97 SR2 & XL2002

On Wed, 30 Jul 2003 08:56:35 -0700, "Todd" wrote:


I have a worksheet that the formula's are overriden
freeequently (thats the way its supposed to be). Is there
a way to mark the cells that now contain numbers and no
formula? I have a macro that colors cells that contain
formulas. I need the opposite too. Can I modify it?

Sub markformula()
Cells.SpecialCells(xlCellTypeFormulas).Interior.C olorIndex
= 35
End Sub

TIA

Todd




All times are GMT +1. The time now is 03:37 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com