For an answer using VBA see below.
Sub test()
Dim Found(255) 'array containing cells with letter at the end
Dim r 'row
Dim x 'array counter
r = 1
x = 0
Do
ActiveSheet.Cells(r, 1).Select
If (Asc(UCase(Right(ActiveCell.Value, 1))) >= 65 And...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.