Hello, I'm fairly new to using macros and I need some assistance. I'm not interested in using conditional formatting for this task, but if all else fails I will have to do so.
What I'd like to see happen is once I run a macro, the multiple cells I have selected (either by a predetermined range or by highlighting said cells) will be colored orange if they are empty. The range will probably be B5 to W10, though I'd like it a lot more if it was the cells I had highlighted. I tried using the following code, but of course it only works for one cell.
Thanks so much for any help you can give me.
What I'd like to see happen is once I run a macro, the multiple cells I have selected (either by a predetermined range or by highlighting said cells) will be colored orange if they are empty. The range will probably be B5 to W10, though I'd like it a lot more if it was the cells I had highlighted. I tried using the following code, but of course it only works for one cell.
Code:
Sub Highlight_Blanks()
'
' Fill any cells which are blank
'
If ActiveCell.Value = "" Then ActiveCell.Interior.Color = 49407
End Sub
Thanks so much for any help you can give me.