View Single Post
 
Old 10-22-2021, 10:26 AM
Logit Logit is offline Windows 10 Office 2007
Expert
 
Join Date: Jan 2017
Posts: 591
Logit is a jewel in the roughLogit is a jewel in the roughLogit is a jewel in the roughLogit is a jewel in the rough
Default

The "numbers" may be text appearing as numbers.

NOT TESTED HERE :

Code:
With Worksheets("Sheet1").Columns(5) 'Col 5 refers to Col E. Edit the number to match your column
    .NumberFormat = "0"
    .Value = .Value
End With
excel - VBA: Convert Text to Number - Stack Overflow
Reply With Quote