convert number into text & Only

I

IL

I want to use Excel to print cheque, I want to know if I can convert the
number into text amount,

e.g. 1081.80 convert into One Thousand Eighty One Dollars and
Eighty Cents Only.

Thanks.
 
I

IL

But it only converted 1081.80 convert into One Thousand Eighty One Dollars and
Eighty Cents without "Only" at the end.

The important thing is that the word 'Only" has to be added at the end after
conversion.

************************************************************
 
M

muddan madhu

change the part of the code

Select Case Cents
Case ""
Cents = " only"
Case "One"
Cents = " and One Cent" & " only"
Case Else
Cents = " and " & Cents & " Cents" & " only"
End Select
 

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