How to tweak this code to ignore numbers?

MOB

Well-known Member
Joined
Oct 18, 2005
Messages
1,061
Office Version
  1. 365
Platform
  1. Windows
I'm using the code below, but I want it to only amend if the cell is text, not a number - is this possible?

Code:
For Each cell In Range("B5:D" & Cells(Rows.Count, "A").End(xlUp).Row)
If Len(cell.Value) > 1 Then cell.Value = Left(cell.Value, 1)
Next cell

TIA
 
Last edited:

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Try
Code:
For Each Cell In Range("B5:D" & Cells(Rows.Count, "A").End(xlUp).Row)
   If Len(Cell.Value) > 1 And Application.IsText(Cell.Value) Then Cell.Value = Left(Cell.Value, 1)
Next Cell
 
Upvote 0
Hi there, you can use something like this:

Code:
For Each cell In Range("B5:D" & Cells(Rows.Count, "A").End(xlUp).Row)
    If isNumeric(cell.Value) = False Then
        If Len(cell.Value) > 1 Then 
            cell.Value = Left(cell.Value, 1)
        End If
    End If
Next cell

Edit: Seems I'm posting this a lot recently, but Fluff beat me to it yet again
 
Last edited:
Upvote 0

Forum statistics

Threads
1,221,418
Messages
6,159,791
Members
451,589
Latest member
Harold14

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top