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!


Transaction
DKK Amount
400-2000-1001-653 DKK29.76

<tbody>
</tbody>
29.76

<tbody>
</tbody>
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
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,215,634
Messages
6,125,938
Members
449,275
Latest member
jacob_mcbride

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