vba to evaluate every cell from A49 to the last row and if there's a number formatted as text error, then popup message and end program

parkerbelt

Active Member
Joined
May 23, 2014
Messages
377
I'm looking for the vba code to evaluate every cell from A49 to the last row and if there's a number formatted as text error, for any of the data, then popup a message that says "Bad Data" and end the program.
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
I'm looking for the vba code to evaluate every cell from A49 to the last row and if there's a number formatted as text error, for any of the data, then popup a message that says "Bad Data" and end the program.
What exactly do you mean by what I highlighted in red above? Perhaps if you posted an example or two, that would help.
 
Upvote 0
For some of my numbers in column A, I'm getting the little green triangle in the upper left corner and when I run my cursor over it, a box pops up with a yellow exclamation point in it and an error message pops up with it that says "The number in this cell is formatted as text or is preceded by an apostrophe". That becomes a problem when I try to do a vlookup off of that number trying to match it with another number that is in fact formatted as a number.
What exactly do you mean by what I highlighted in red above? Perhaps if you posted an example or two, that would help.
 
Upvote 0
Possibly (untested)....

Code:
Sub numastxt()
    Dim myCell As Range
    For Each myCell In Range("A49:A" & Range("A" & Rows.Count).End(xlUp).Row)
        If myCell.Errors.Item(xlNumberAsText).Value = True Then
            MsgBox "Cell" & myCell.Address & " is a Number Stored As Text"
            Exit Sub
        End If
    Next
End Sub
 
Upvote 0
That worked. Thank you!!

Possibly (untested)....

Code:
Sub numastxt()
    Dim myCell As Range
    For Each myCell In Range("A49:A" & Range("A" & Rows.Count).End(xlUp).Row)
        If myCell.Errors.Item(xlNumberAsText).Value = True Then
            MsgBox "Cell" & myCell.Address & " is a Number Stored As Text"
            Exit Sub
        End If
    Next
End Sub
 
Upvote 0
What about if instead of flagging cells in those cells you simply have the code fix the cells so the numbers in them are real numbers? If you are up for that, I believe this code will do it for you...
Code:
Sub MakeTextNumbersIntoRealNumbers()
  With Range("A49", Cells(Rows.Count, "A").End(xlUp))
    .NumberFormat = "General"
    .TextToColumns , xlDelimited, , , False, False, False, False, False
  End With
End Sub
 
Last edited:
Upvote 0
That would work in another situation. In this situation, I just want to know if I'm getting bad data. When the data is good, I'm not getting numbers formatted as text, but when the data comes back bad, some of the cells are formatted as text. When that happens, I want to stop the program from running and go re-pull the data and then start my program again. If I don't check if the data is bad, my program will just run through to the end and I may never know, unless I happen to go back and check every row of data for errors. Thanks for your help Rick!!

What about if instead of flagging cells in those cells you simply have the code fix the cells so the numbers in them are real numbers? If you are up for that, I believe this code will do it for you...
Code:
Sub MakeTextNumbersIntoRealNumbers()
  With Range("A49", Cells(Rows.Count, "A").End(xlUp))
    .NumberFormat = "General"
    .TextToColumns , xlDelimited, , , False, False, False, False, False
  End With
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,999
Messages
6,122,645
Members
449,093
Latest member
Ahmad123098

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