• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Value in words

You'll need to create lookup table.

However it is best done via VBA (UDF or some other method).
 
Hi !

Without VBA, a worksheet helper with two columns :
one for the number (90) and another for the word (ninety)
and the conversion is operated via a simple VLOOKUP formula …

Rahul, the other way : a direct input, it well works ! :DD
 
How many numbers other than "ninety" do you need to write? Just one or two you could use something like:

=choose(90-89,"Ninety")

or

=if(a1=90,"Ninety","")
 
Back
Top