Formatting Column A

JoshWolski

New Member
Joined
Nov 6, 2018
Messages
13
I would like to create a code to check the format of all cells in column A, excluding A1 on my Sheets( "Input")

If the format is not one of the following, a msgbox with pop up saying "That number is not valid":

Formats

#########
############
##############
###-###-###
####-####-####
####-####-####-##

I don't even know where to start. Please Help
 

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
try the following macro codes. list your formats in column K and run the macro.
Code:
Sub josh()
Dim a As Integer, b As Integer, d As Integer, count As Integer
Dim c As String
b = Cells(Rows.count, 1).End(xlUp).Row
    For a = 2 To b
    c = Cells(a, 1).NumberFormat
    count = 0
        For d = 1 To 6
            If c = Cells(d, 12) Then
            count = count + 1
            End If
                If count < 1 Then
                MsgBox " row# " & a & " is not in correct format"
                Exit For
                End If
        Next d
    Next a
MsgBox "complete"
End Sub
Ravi shankar
 
Upvote 0

Forum statistics

Threads
1,214,908
Messages
6,122,187
Members
449,071
Latest member
cdnMech

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