Extracting only the balance amount in a column with textnumber and number

learner1excel

New Member
Joined
Apr 6, 2019
Messages
1
So the column has a mixture of this: row 1 has textnumber and row two has only number. This column has thousands of rows with formats like row 1 and row 2.

Text123456

350.50

I only want to extract the 350.50 to another column so I can get a sum and do that for the whole column.

Can I get some help?
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
The SUM function will ignore text and sum only the numeric cells:
Excel Workbook
DE
1Hdr
2Text123
3123
4Text124
5124
6Text125
7125
8Text126
9126
10Text127
11127
12Text128
13128
14Text129
15129
16Text130
17sum:882
Sheet1
 
Upvote 0
If the existing data is in column A, starting on row 1, enter this formula in B1 and copy it down:
=IF(ISNUMBER(A1),A1,0)
 
Upvote 0

Forum statistics

Threads
1,216,077
Messages
6,128,684
Members
449,463
Latest member
Jojomen56

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