![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Board Regular
Join Date: Feb 2002
Posts: 422
|
I have data in column "A" this has numbers and text in it I have sorted them and I need a macro to go to the first cell with text in it
Thanks in advance |
|
|
|
|
|
#2 |
|
MrExcel MVP
Join Date: Feb 2002
Location: Bogota, Colombia
Posts: 11,927
|
Macro for that ?
Control Up ? Control Home ? |
|
|
|
|
|
#3 |
|
Board Regular
Join Date: Feb 2002
Posts: 422
|
if I start in A1 I need a macro that will go down column A till it finds Text
I hope this is clearer 1 2 3 4 Monday Tuesday Wednesday Thursday Friday |
|
|
|
|
|
#4 |
|
MrExcel MVP
Join Date: Feb 2002
Location: Bogota, Colombia
Posts: 11,927
|
You mean select "Monday" in your example ?
This works for Column A Code:
Sub SelectTextColumnA()
On Error Resume Next
Columns(1).SpecialCells(xlCellTypeConstants, xlTextValues).Range("A1").Select
End Sub
|
|
|
|
|
|
#5 |
|
Board Regular
Join Date: Feb 2002
Posts: 422
|
Thank You Very much For Your Time
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|