Hey All,
Small bug that keeps popping up im trying to locate Cells with some title and select the whole column and reformat it:
heres what i have so far
not sure why its not working any help would be magic
Small bug that keeps popping up im trying to locate Cells with some title and select the whole column and reformat it:
heres what i have so far
Code:
For i = 1 To 40
If xlApp.Application.Cells(1, i).Value Like "H" Then
xlApp.Application.Columns("i:i").Select
xlApp.Application.Selection.NumberFormat = "[$-F400]h:mm:ss AM/PM"
End If
i = i + 1
Next i
not sure why its not working any help would be magic