VBA Code to color cell if cell contain formula or if contain numeric/alphabet

aayaanmayank

Board Regular
Joined
Jul 20, 2018
Messages
157
Hi All i need a vba code which can yellow colour the cell if cell contains formula and blue colour if cell is not blank or contains anything.
 
Last edited:

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Hi,

You can test following

Code:
Sub SimplyColor()
  With ActiveCell
    If .HasFormula Then
        .Interior.Color = vbYellow
    Else
       .Interior.Color = vbBlue
    End If
  End With
End Sub

HTH
 
Upvote 0
I need code which can work on entire sheet or entire workbook

To work on an entire sheet try
Code:
Sub Hilite()
   With ActiveSheet.UsedRange
      .SpecialCells(xlFormulas).Interior.Color = vbYellow
      .SpecialCells(xlConstants).Interior.Color = vbBlue
   End With
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,622
Messages
6,120,572
Members
448,972
Latest member
Shantanu2024

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top