Hi there,
I just started VBA today, for the single purpose to make my life easier with the massive Excel spreadsheets I need to format all the time.
Therefore, question:
How can I select (and then make bold) an entire row, if one value in a specific column equals a certain predefined value?
So something like this (pseudo alert):
Code:
Columns("I:I").Select
If Selection.Value <> "NONE" Then
EntireRow.Font.Bold = True
End if
But it doesn't work, because (I assume) I need to loop through all rows manually and select each cell in "I:I" before I can do anything with that row?