how do i read currency value in text amount e.g 2,000 = Two thous

G

Guest

In want to conver currency into text amount
e.g
1,000 =One thousand
2,529=Two thousand five hundred twenty nine
 
A

Abdul Hameed

Imran,

I had same question in this newsgroup and Mr. Paul B had replied me which I
am forwarding to you as it is. it works fine.


have a look here
http://support.microsoft.com/default.aspx?scid=kb;[LN];Q95640

To put in this function, from your workbook right-click the workbook's icon
and pick View Code. This icon is to the left of the "File" menu this will
open the VBA editor, in the left hand window click on your workbook name, go
to insert, module, and paste the code in the window that opens on the right
hand side, press Alt and Q to close this window and go back to your
workbook. If you are using excel 2000 or newer you may have to change the
macro security settings to get the macro to run.



then use something like this in a cell



=ConvertCurrencyToEnglish(5.25)

or

=ConvertCurrencyToEnglish(A4)


Abdul Hameed
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top