VBA help to Convert tex number of diffrent solumn to number

Mallesh23

Well-known Member
Joined
Feb 4, 2009
Messages
976
Office Version
  1. 2010
Platform
  1. Windows
Code:
Hi Team, 

I am trying to convert the the number which are in text to number
Numbers in few column(C:C and I:I) getting deleted.

below are two method getting same result, 

plz suggest any best method to tackle this task.

Sub Convert_TextNumber_Number()


Dim ws As Worksheet
Set ws = ThisWorkbook.Worksheets("Sheet1")

ws.Range("A:A,C:C,F:F,I:I,L:L").Select
Range("A1,C1,F1,I1,L1").EntireColumn.Select

With Selection
.NumberFormat = "General"
.Value = .Value

End With

End Sub
 
Hello Sir,

Your approach has worked successfully, getting error at pikes approach, I have header and those are getting filled down for column C and I,
have to check with row -2 to lastrow approach. Thanks both of you great Job !

Regards,
Mallesh
 
Upvote 0

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)

Forum statistics

Threads
1,215,428
Messages
6,124,832
Members
449,190
Latest member
rscraig11

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