Share via

formul;a to convert figures into words in excel

Anonymous
2025-02-12T10:27:09+00:00

formul;a to convert figures into words in excel

Microsoft 365 and Office | Excel | For education | iOS

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

16 answers

Sort by: Most helpful
  1. Anonymous
    2025-02-20T06:29:54+00:00

    Alt +F11 to open VB Editor.

    Then insert a new module and copy code in it. Now you can use spellnumber formula in that workbook.

    Image

    File is sent in private message.

    Private Messages - Microsoft Community

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  2. Anonymous
    2025-02-13T05:34:13+00:00

    It can be any number; 1 to 10,00,00,000 etc.

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2025-02-13T05:31:26+00:00

    Formula to convert numbers into words in excel

    Was this answer helpful?

    0 comments No comments
  4. Rich~M 20,370 Reputation points Volunteer Moderator
    2025-02-13T00:04:15+00:00

    You basically have two choices. You can set up a lookup chart and use VLOOKUP to find the number and its corresponding text, or you can use a formula like IFS to list the possibilities individually. Which one you use is probably most affected by the number of combinations you have to include. Also, if there is any likelihood that the data would change and need editing, the chart and VLOOKUP option will make that easier.

    Chart and VLOOKUP:

    In the screenshot the sample chart is in F1:G6. The formula used in B2 and filled down is:

    =VLOOKUP(A2,$F$2:$G$6,2,FALSE)

    Image

    IFS formula with choices included in the formula:

    In the screenshot this formula is in C2 and filled down:

    =IFS(A2=1,"Small",A2=2,"Medium",A2=3,"Large",A2=4,"X-Large",A2=5,"XX-Large")

    Image

    Was this answer helpful?

    0 comments No comments
  5. Anonymous
    2025-02-12T13:03:44+00:00

    Could you share some figures and the words you want to convert?

    Was this answer helpful?

    0 comments No comments