My spreadsheet is from Col A to Col O
Some rows in Col C contain a number followed by the word Total (1234 Total).
I want to bold the entire row for all that that contain the word Total. Below is macro I am using -- can someone tell me what I doing wrong?
For i = 1 To Cells(Rows.Count, 3).End(xlUp).Row
If Cells(i, 3) = "%Total%" Then
Rows(i).EntireRow.Font.Bold = True
End If
Next
Some rows in Col C contain a number followed by the word Total (1234 Total).
I want to bold the entire row for all that that contain the word Total. Below is macro I am using -- can someone tell me what I doing wrong?
For i = 1 To Cells(Rows.Count, 3).End(xlUp).Row
If Cells(i, 3) = "%Total%" Then
Rows(i).EntireRow.Font.Bold = True
End If
Next