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

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
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,215,465
Messages
6,124,977
Members
449,200
Latest member
Jamil ahmed

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