Formula to extract Figures from String

cvpjk

New Member
Joined
Mar 19, 2016
Messages
1
Im a complete beginner to excel so need help with this urgently.

I need to extract the DKK figure from the transaction cell to the DKK amount.

is there a formula which is most suitable?
Ive been doin this manually for 2 weeks!

[TABLE="width: 500"]
<tbody>[TR]
[TD]

Transaction
[/TD]
[TD="align: center"]DKK Amount[/TD]
[/TR]
[TR]
[TD][TABLE="width: 216"]
<tbody>[TR]
[TD="width: 216"]400-2000-1001-653 DKK29.76[/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[TD] 29.76[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
There will be plenty of ways. Assuming your example typical of all ie the DKK is always at the end then:

=0+MID(A1,FIND("DKK",A1)+3,99)
 
Upvote 0
Assumes your data is in A1, then =MID(A1,FIND("DKK",A1)+3,5)
 
Upvote 0

Forum statistics

Threads
1,226,735
Messages
6,192,733
Members
453,752
Latest member
Austin2222

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