Hello everybody,
I would like to change the colors of certain sheets, which meet this condition => If Left(cell, 1) = " " Or Right(cell, 1) = " " Then cell.Interior.Color = 65535
Sub Select_All_Cells_with_Data()
Dim sht
Set Rng = ActiveSheet.UsedRange
Rng.Cells(1, 1).Select
For i = 1 To...