If statement in Vba

FROGGER24

Well-known Member
Joined
May 22, 2004
Messages
704
Office Version
  1. 2013
  2. 2010
Platform
  1. Windows
in cell d2 need to look at the value in g2 if value is alphanumeric return value of B , otherwise value is S. Will need to run to last row determined column g. Thanks
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Can you show us what possible values you may have in cell G2?
 
Upvote 0
Try:

Place in Standard module
Code:
Sub IsAlphaNumeric()
    Dim rng As Range, cel As Range
    Set rng = Range("G2", Range("G" & Rows.Count).End(xlUp))
    
    For Each cel In rng
        If ContainsNumber(cel.Value) And Not WorksheetFunction.IsNumber(cel) Then
            cel.Offset(, -3) = "B"
        Else
            cel.Offset(, -3) = "S"
        End If
    Next
End Sub

Private Function ContainsNumber(celValue As String) As Boolean
    Dim a As Integer
     
    For a = 1 To Len(celValue)
        If IsNumeric(Mid(celValue, a, 1)) Then
            ContainsNumber = True
            Exit Function
        End If
    Next a
End Function


AlphaNumeric
- cell contains a number BUT cell value is not a number
 
Upvote 0

Forum statistics

Threads
1,214,990
Messages
6,122,626
Members
449,094
Latest member
bsb1122

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