Change text color of specific date range by macro in Excel

M

Morgan LeFay

Hello,

in a worksheet (or preferably entire workbook) is it possible to run a
macro, for example, that looks for entries up to a specific date and changes
the text to a different color, after this does the same to other entries
using another color, etc. and how would such a macro look like?
 
J

Jeff

Morgan,

I would use a do while loop that goes through your data looking for specific
dates.
I believe either of the items below will work for changing the text color
withing the cell

ActiveSheet.Cells(row, column).Select
Selection.Font.ColorIndex = 3
or
ActiveSheet.Cells(row,column).Font.ColorIndex = 3

This changes the background color of the cell

ActiveSheet.Cells(row, column).Interior.ColorIndex = 6

Hopefully, this will get you started.'

Jeff






ActiveSheet.Cells(row, 3).Interior.ColorIndex = 6
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top