Words and numbers in excel

Excel for Microsoft 365 Excel 2021 Excel 2019 Excel 2016 Excel 2013 Excel 2010 More…Less

Excel doesn’t have a default function that displays numbers as English words in a worksheet, but you can add this capability by pasting the following SpellNumber function code into a VBA (Visual Basic for Applications) module. This function lets you convert dollar and cent amounts to words with a formula, so 22.50 would read as Twenty-Two Dollars and Fifty Cents. This can be very useful if you’re using Excel as a template to print checks.

If you want to convert numeric values to text format without displaying them as words, use the TEXT function instead.

Note: Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the VBA programming language, and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure. However, they will not modify these examples to provide added functionality, or construct procedures to meet your specific requirements.

Create the SpellNumber function to convert numbers to words

  1. Use the keyboard shortcut, Alt + F11 to open the Visual Basic Editor (VBE).

  2. Click the Insert tab, and click Module.

    On the Insert menu, click Module.

  3. Copy the following lines of code.

    Note: Known as a User Defined Function (UDF), this code automates the task of converting numbers to text throughout your worksheet.

    Option Explicit
    
    'Main Function
    
    Function SpellNumber(ByVal MyNumber)
    
    Dim Dollars, Cents, Temp
    
    Dim DecimalPlace, Count
    
    ReDim Place(9) As String
    
    Place(2) = " Thousand "
    
    Place(3) = " Million "
    
    Place(4) = " Billion "
    
    Place(5) = " Trillion "
    
    ' String representation of amount.
    
    MyNumber = Trim(Str(MyNumber))
    
    ' Position of decimal place 0 if none.
    
    DecimalPlace = InStr(MyNumber, ".")
    
    ' Convert cents and set MyNumber to dollar amount.
    
    If DecimalPlace > 0 Then
    
    Cents = GetTens(Left(Mid(MyNumber, DecimalPlace + 1) & _ "00", 2))
    
    MyNumber = Trim(Left(MyNumber, DecimalPlace - 1))
    
    End If
    
    Count = 1
    
    Do While MyNumber <> ""
    
    Temp = GetHundreds(Right(MyNumber, 3))
    
    If Temp <> "" Then Dollars = Temp & Place(Count) & Dollars
    
    If Len(MyNumber) > 3 Then
    
    MyNumber = Left(MyNumber, Len(MyNumber) - 3)
    
    Else
    
    MyNumber = ""
    
    End If
    
    Count = Count + 1
    
    Loop
    
    Select Case Dollars
    
    Case ""
    
    Dollars = "No Dollars"
    
    Case "One"
    
    Dollars = "One Dollar"
    
    Case Else
    
    Dollars = Dollars & " Dollars"
    
    End Select
    
    Select Case Cents
    
    Case ""
    
    Cents = " and No Cents"
    
    Case "One"
    
    Cents = " and One Cent"
    
    Case Else
    
    Cents = " and " & Cents & " Cents"
    
    End Select
    
    SpellNumber = Dollars & Cents
    
    End Function
    
    
    ' Converts a number from 100-999 into text
    
    Function GetHundreds(ByVal MyNumber)
    
    Dim Result As String
    
    If Val(MyNumber) = 0 Then Exit Function
    
    MyNumber = Right("000" & MyNumber, 3)
    
    ' Convert the hundreds place.
    
    If Mid(MyNumber, 1, 1) <> "0" Then
    
    Result = GetDigit(Mid(MyNumber, 1, 1)) & " Hundred "
    
    End If
    
    ' Convert the tens and ones place.
    
    If Mid(MyNumber, 2, 1) <> "0" Then
    
    Result = Result & GetTens(Mid(MyNumber, 2))
    
    Else
    
    Result = Result & GetDigit(Mid(MyNumber, 3))
    
    End If
    
    GetHundreds = Result
    
    End Function
    
    
    ' Converts a number from 10 to 99 into text.
    
    
    Function GetTens(TensText)
    
    Dim Result As String
    
    Result = "" ' Null out the temporary function value.
    
    If Val(Left(TensText, 1)) = 1 Then ' If value between 10-19...
    
    Select Case Val(TensText)
    
    Case 10: Result = "Ten"
    
    Case 11: Result = "Eleven"
    
    Case 12: Result = "Twelve"
    
    Case 13: Result = "Thirteen"
    
    Case 14: Result = "Fourteen"
    
    Case 15: Result = "Fifteen"
    
    Case 16: Result = "Sixteen"
    
    Case 17: Result = "Seventeen"
    
    Case 18: Result = "Eighteen"
    
    Case 19: Result = "Nineteen"
    
    Case Else
    
    End Select
    
    Else ' If value between 20-99...
    
    Select Case Val(Left(TensText, 1))
    
    Case 2: Result = "Twenty "
    
    Case 3: Result = "Thirty "
    
    Case 4: Result = "Forty "
    
    Case 5: Result = "Fifty "
    
    Case 6: Result = "Sixty "
    
    Case 7: Result = "Seventy "
    
    Case 8: Result = "Eighty "
    
    Case 9: Result = "Ninety "
    
    Case Else
    
    End Select
    
    Result = Result & GetDigit _
    
    (Right(TensText, 1)) ' Retrieve ones place.
    
    End If
    
    GetTens = Result
    
    End Function
    
    
    ' Converts a number from 1 to 9 into text.
    
    Function GetDigit(Digit)
    
    Select Case Val(Digit)
    
    Case 1: GetDigit = "One"
    
    Case 2: GetDigit = "Two"
    
    Case 3: GetDigit = "Three"
    
    Case 4: GetDigit = "Four"
    
    Case 5: GetDigit = "Five"
    
    Case 6: GetDigit = "Six"
    
    Case 7: GetDigit = "Seven"
    
    Case 8: GetDigit = "Eight"
    
    Case 9: GetDigit = "Nine"
    
    Case Else: GetDigit = ""
    
    End Select
    
    End Function

  4. Paste the lines of code into the Module1 (Code) box.

    Code pasted in the Module1 (Code) box.

  5. Press Alt + Q to return to Excel. The SpellNumber function is now ready to use.

    Note: This function works only for the current workbook. To use this function in another workbook, you must repeat the steps to copy and paste the code in that workbook.

Top of Page

Use the SpellNumber function in individual cells

  1. Type the formula =SpellNumber(A1) into the cell where you want to display a written number, where A1 is the cell containing the number you want to convert. You can also manually type the value like =SpellNumber(22.50).

  2. Press Enter to confirm the formula.

Top of Page

Save your SpellNumber function workbook

Excel cannot save a workbook with macro functions in the standard macro-free workbook format (.xlsx). If you click File > Save. A VB project dialog box opens. Click No.

In the VB project dialog box, click No.

You can save your file as an Excel Macro-Enabled Workbook (.xlsm) to keep your file in its current format.

  1. Click File > Save As.

  2. Click the Save as type drop-down menu, and select Excel Macro-Enabled Workbook.

  3. Click Save.

Top of Page

See Also

TEXT function

Need more help?

Содержание

  1. Combine text and numbers
  2. Use a number format to display text before or after a number in a cell
  3. Combine text and numbers from different cells into the same cell by using a formula
  4. Examples
  5. Need more help?
  6. Convert numbers into words
  7. Create the SpellNumber function to convert numbers to words
  8. Use the SpellNumber function in individual cells
  9. Save your SpellNumber function workbook
  10. How to Convert Number to Words in Excel
  11. Why We Need to Learn About Excel Convert Number to Words?
  12. How to Convert Number to Words in Excel 2: Various Formulas Combination
  13. How to Convert Number to Words in Excel 3: Custom Formula (VBA)
  14. Enable Macro by Checking and Setting Macro Security Setting
  15. Create the Custom Formula to Convert Number to Words in Excel Using VBA Code
  16. Use the Formula
  17. Add-In Download for the Formula to Convert Number to Words in Excel
  18. How to Convert Number to Words with Currency in Excel
  19. How to Capitalize Each First Letter in the Result from Converting a Number to Words in Excel: PROPER
  20. How to Capitalize All Letters in the Result from Converting a Number to Words in Excel: UPPER
  21. Exercise
  22. Instruction:
  23. Additional Note

Combine text and numbers

Let’s say you need to create a grammatically correct sentence from several columns of data to prepare a mass mailing. Or, maybe you need to format numbers with text without affecting formulas that use those numbers. In Excel, there are several ways to combine text and numbers.

Use a number format to display text before or after a number in a cell

If a column that you want to sort contains both numbers and text—such as Product #15, Product #100, Product #200—it may not sort as you expect. You can format cells that contain 15, 100, and 200 so that they appear in the worksheet as Product #15, Product #100, and Product #200.

Use a custom number format to display the number with text—without changing the sorting behavior of the number. In this way, you change how the number appears without changing the value.

Follow these steps:

Select the cells that you want to format.

On the Home tab, in the Number group, click the arrow .

In the Category list, click a category such as Custom, and then click a built-in format that resembles the one that you want.

In the Type field, edit the number format codes to create the format that you want.

To display both text and numbers in a cell, enclose the text characters in double quotation marks (» «), or precede the numbers with a backslash ().

NOTE: Editing a built-in format does not remove the format.

12 as Product #12

The text enclosed in the quotation marks (including a space) is displayed before the number in the cell. In the code, «0» represents the number contained in the cell (such as 12).

12:00 as 12:00 AM EST

The current time is shown using the date/time format h:mm AM/PM, and the text «EST» is displayed after the time.

-12 as $-12.00 Shortage and 12 as $12.00 Surplus

$0.00 «Surplus»;$-0.00 «Shortage»

The value is shown using a currency format. In addition, if the cell contains a positive value (or 0), «Surplus» is displayed after the value. If the cell contains a negative value, «Shortage» is displayed instead.

Combine text and numbers from different cells into the same cell by using a formula

When you do combine numbers and text in a cell, the numbers become text and no longer function as numeric values. This means that you can no longer perform any math operations on them.

To combine numbers, use the CONCATENATE or CONCAT, TEXT or TEXTJOIN functions, and the ampersand (&) operator.

In Excel 2016, Excel Mobile, and Excel for the web, CONCATENATE has been replaced with the CONCAT function. Although the CONCATENATE function is still available for backward compatibility, you should consider using CONCAT, because CONCATENATE may not be available in future versions of Excel.

TEXTJOIN combines the text from multiple ranges and/or strings, and includes a delimiter you specify between each text value that will be combined. If the delimiter is an empty text string, this function will effectively concatenate the ranges. TEXTJOIN is not available in Excel 2013 and previous versions.

Examples

See various examples in the figure below.

Look closely at the use of the TEXT function in the second example in the figure. When you join a number to a string of text by using the concatenation operator, use the TEXT function to control the way the number is shown. The formula uses the underlying value from the referenced cell (.4 in this example) — not the formatted value you see in the cell (40%). You use the TEXT function to restore the number formatting.

Need more help?

You can always ask an expert in the Excel Tech Community or get support in the Answers community.

Источник

Convert numbers into words

Excel doesn’t have a default function that displays numbers as English words in a worksheet, but you can add this capability by pasting the following SpellNumber function code into a VBA (Visual Basic for Applications) module. This function lets you convert dollar and cent amounts to words with a formula, so 22.50 would read as Twenty-Two Dollars and Fifty Cents. This can be very useful if you’re using Excel as a template to print checks.

If you want to convert numeric values to text format without displaying them as words, use the TEXT function instead.

Note: Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the VBA programming language, and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure. However, they will not modify these examples to provide added functionality, or construct procedures to meet your specific requirements.

Create the SpellNumber function to convert numbers to words

Use the keyboard shortcut, Alt + F11 to open the Visual Basic Editor (VBE).

Note: You can also access the Visual Basic Editor by showing the Developer tab in your ribbon.

Click the Insert tab, and click Module.

Copy the following lines of code.

Note: Known as a User Defined Function (UDF), this code automates the task of converting numbers to text throughout your worksheet.

Paste the lines of code into the Module1 (Code) box.

Press Alt + Q to return to Excel. The SpellNumber function is now ready to use.

Note: This function works only for the current workbook. To use this function in another workbook, you must repeat the steps to copy and paste the code in that workbook.

Use the SpellNumber function in individual cells

Type the formula =SpellNumber( A1) into the cell where you want to display a written number, where A1 is the cell containing the number you want to convert. You can also manually type the value like =SpellNumber(22.50).

Press Enter to confirm the formula.

Save your SpellNumber function workbook

Excel cannot save a workbook with macro functions in the standard macro-free workbook format (.xlsx). If you click File > Save. A VB project dialog box opens. Click No.

You can save your file as an Excel Macro-Enabled Workbook (.xlsm) to keep your file in its current format.

Click File > Save As.

Click the Save as type drop-down menu, and select Excel Macro-Enabled Workbook.

Источник

How to Convert Number to Words in Excel

In this tutorial, you will learn completely how to convert a number to words in excel.

When processing numbers in excel, especially if they are financial related numbers, we sometimes need the numbers’ words form. Unfortunately, there isn’t a built-in excel formula that can help us to convert our numbers to their word form directly. However, there are some alternative methods we can implement which will give us similar results.

Want to know what are those methods in excel to convert our numbers to words properly? Read all parts of this tutorial.

Disclaimer: This post may contain affiliate links from which we earn commission from qualifying purchases/actions at no additional cost for you. Learn more

Want to work faster and easier in Excel? Install and use Excel add-ins! Read this article to know the best Excel add-ins to use according to us!

Why We Need to Learn About Excel Convert Number to Words?

If the numbers you want to convert to words are small numbers, then you can use VLOOKUP to do it.

However, before you write the VLOOKUP, you need to create a table that consists of numbers and their word forms. The table will then become the reference where VLOOKUP will find the word form of your number.

Generally, the writing form of your VLOOKUP for this number conversion process will become like this.

We input our number as the lookup reference value and the column index of the words form in our reference table. We input FALSE as the VLOOKUP search mode because we want the exact word form for our number (if we input TRUE, then VLOOKUP may take the wrong word form for our number because of its approximate search mode).

To better understand the VLOOKUP method implementation, see the example below.

Let’s say we want to convert this number into words.

How to do the conversion? Using the VLOOKUP method, we need to create a number-words table first as the VLOOKUP reference table.

To make the display cleaner, it is better if we create the table on a separate sheet. For the example, we create a reference table like this for our VLOOKUP.

If you need to, you can create a much bigger reference table to be able to convert more numbers!

After you have the table ready, just write VLOOKUP in the cell where you want the words form of your number. Input the number you want to convert, the reference table, the words column index, and FALSE to the VLOOKUP.

Here is the VLOOKUP writing to convert the number in the example.

As you have already created the reference table, you can use it later when you have other numbers to convert!

Admittedly, this method can only convert a small selection of numbers. What if you have numbers with the value of millions or more? If that is the case, then you should use one of the two methods we will discuss next instead.

How to Convert Number to Words in Excel 2: Various Formulas Combination

Using multiple formulas in one writing, we can also convert our number to its word form in excel. The formula writing, however, is quite long so you might need to copy the formula from here instead of writing it yourself 🙂

Just so you know, we don’t write the formula we will show below ourselves. The credit all goes to an Excel Forum user with the Id HaroonSid who managed to get this gem out. We edit the formula a little bit so it will translate a number into pure words without currency terms.

Here is the formula that HaroonSid has formulated to solve the number to words conversion problem in excel. This assumes your number is in the B2 cell. Therefore, you need to change the B2 cell coordinate there if you put your number in another cell.

Here, what we can tell is the formula uses CHOOSE as its core to converts the number in B2 to words. Mostly, it convert the number writing format using the TEXT formula first before separating its parts using MID.

From the MID result, CHOOSE will determine the correct word form for the part of the number. It uses the logic with other formulas help like SUBSTITUTE and IF to convert each part of our number into words.

For the implementation example of the formula writing, take a look at the screenshot below.

As you can see, we manage to convert our number to words using the formula!

How to Convert Number to Words in Excel 3: Custom Formula (VBA)

If you don’t use the two methods we have already discussed, then there is one more method you can try. For this method, we use VBA code to create a custom formula that can convert our numbers into words easily.

To use this method, however, you need to enable Macro first in your excel workbook so we can use VBA. From there, you must copy the VBA code we have prepared below to your workbook before you can utilize the formula.

To make it easier for you, we divide the discussion for this method into three parts. Those parts are the macro enablement, the VBA code copy process, and the usage of the formula. We will discuss each part in a step-by-step style.

Enable Macro by Checking and Setting Macro Security Setting

To be able to use a custom formula from a VBA code in excel, you need to permit macro. Therefore, we need to ensure its correct permission setting first by doing the following steps.

    Click File from the menu tab (In Mac, click Excel on the top left of your screen)

Click Options (In Mac, click Preferences)

Click Trust Center (In Mac, click Security. After that, please proceed to step 6)

Click Trust Center Settings.

Click Macro Settings

Choose Enable All Macros

Click OK and OK

Click File and then Save As

On the Save as Type:dropdown, choose Excel Macro-Enabled Workbook

Name your file in the File Name: text box

Click Save

Create the Custom Formula to Convert Number to Words in Excel Using VBA Code

After setting our macro permission, it is time to create the formula using VBA.

  1. Press Alt and F11 (Option + F11 atau Option + Fn + F11 di Mac) at the same time on your keyboard
  2. Right-click on “VBA Project…”

Highlight Insert with your pointer and click Module

Double Click on the Module that comes up. Paste this code on the right side of the VBA editor screen

Function NUMBERTOTEXT(ByVal n As Currency) As String В В

Const Thousand = 1000@ В В
Const Million = Thousand * Thousand В В
Const Billion = Thousand * Million В В
Const Trillion = Thousand * Billion В В

If (n = 0@) Then NUMBERTOTEXT = «zero»: Exit Function В В

Dim Buf As String: If (n 0@) Then n = Abs(Fix(n)) В В
Dim AtLeastOne As Integer: AtLeastOne = n >= 1 В В

If (n >= Trillion) Then В В В
Buf = Buf & EnglishDigitGroup(Int(n / Trillion)) & » trillion» В В В
n = n — Int(n / Trillion) * Trillion В В В
If (n >= 1@) Then Buf = Buf & » » В В
End If В В

If (n >= Billion) Then В В В
Buf = Buf & EnglishDigitGroup(Int(n / Billion)) & » billion» В В В
n = n — Int(n / Billion) * Billion В В В
If (n >= 1@) Then Buf = Buf & » » В В
End If В В

If (n >= Million) Then В В В
Buf = Buf & EnglishDigitGroup(n Million) & » million» В В В
n = n Mod Million В В В
If (n >= 1@) Then Buf = Buf & » » В В
End If В В

If (n >= Thousand) Then В В В
Buf = Buf & EnglishDigitGroup(n Thousand) & » thousand» В В В
n = n Mod Thousand В В В
If (n >= 1@) Then Buf = Buf & » » В В
End If В В

If (n >= 1@) Then В В В
Buf = Buf & EnglishDigitGroup(n) В В
End If В В

If (Frac = 0@) Then В В В
Buf = Buf В В
ElseIf (Int(Frac * 100@) = Frac * 100@) Then В В В
If AtLeastOne Then Buf = Buf & » » В В В
Buf = Buf & Format$(Frac * 100@, «00») & «/100» В В
Else В В В
If AtLeastOne Then Buf = Buf & » » В В В
Buf = Buf & Format$(Frac * 10000@, «0000») & «/10000» В В
End If В В

NUMBERTOTEXT = Buf
End Function

Private Function EnglishDigitGroup(ByVal n As Integer) As String В В

Const Hundred = «hundred» В В
Const One = «one » В В
Const Two = «two » В В
Const Three = «three » В В
Const Four = «four » В В
Const Five = «five » В В
Const Six = «six » В В
Const Seven = «seven » В В
Const Eight = «eight » В В
Const Nine = «nine » В В
Dim Buf As String: Buf = «» В В
Dim Flag As Integer: Flag = False В В

Select Case (n 100) В В В
Case 0: Buf = «»: Flag = False В В В
Case 1: Buf = One & Hundred: Flag = True В В В
Case 2: Buf = Two & Hundred: Flag = True В В В
Case 3: Buf = Three & Hundred: Flag = True В В В
Case 4: Buf = Four & Hundred: Flag = True В В В
Case 5: Buf = Five & Hundred: Flag = True В В В
Case 6: Buf = Six & Hundred: Flag = True В В В
Case 7: Buf = Seven & Hundred: Flag = True В В В
Case 8: Buf = Eight & Hundred: Flag = True В В В
Case 9: Buf = Nine & Hundred: Flag = True В В
End Select В В

If (Flag <> False) Then n = n Mod 100 В В
If (n > 0) Then В В В
If (Flag <> False) Then Buf = Buf & » » В В
Else В В В
EnglishDigitGroup = Buf В В В
Exit Function В В
End If В В

Select Case (n 10) В В В
Case 0, 1: Flag = False В В В
Case 2: Buf = Buf & «twenty»: Flag = True В В В
Case 3: Buf = Buf & «thirty»: Flag = True В В В
Case 4: Buf = Buf & «forty»: Flag = True В В В
Case 5: Buf = Buf & «fifty»: Flag = True В В В
Case 6: Buf = Buf & «sixty»: Flag = True В В В
Case 7: Buf = Buf & «seventy»: Flag = True В В В
Case 8: Buf = Buf & «eighty»: Flag = True В В В
Case 9: Buf = Buf & «ninety»: Flag = True В В
End Select В В

If (Flag <> False) Then n = n Mod 10 В В
If (n > 0) Then В В В
If (Flag <> False) Then Buf = Buf & » » В В
Else В В В
EnglishDigitGroup = Buf В В В
Exit Function В В
End If В В

Select Case (n) В В В
Case 0: В В В
Case 1: Buf = Buf & «one» В В В
Case 2: Buf = Buf & «two» В В В
Case 3: Buf = Buf & «three» В В В
Case 4: Buf = Buf & «four» В В В
Case 5: Buf = Buf & «five» В В В
Case 6: Buf = Buf & «six» В В В
Case 7: Buf = Buf & «seven» В В В
Case 8: Buf = Buf & «eight» В В В
Case 9: Buf = Buf & «nine» В В В
Case 10: Buf = Buf & «ten» В В В
Case 11: Buf = Buf & «eleven» В В В
Case 12: Buf = Buf & «twelve» В В В
Case 13: Buf = Buf & «thirteen» В В В
Case 14: Buf = Buf & «fourteen» В В В
Case 15: Buf = Buf & «fifteen» В В В
Case 16: Buf = Buf & «sixteen» В В В
Case 17: Buf = Buf & «seventeen» В В В
Case 18: Buf = Buf & «eighteen» В В В
Case 19: Buf = Buf & «nineteen» В В
End Select В В

Click on the X mark in the red box on the top right to close your VBA editor. The formula is now ready to use!

Use the Formula

After inputting the VBA code to create the formula, it is time to use it!

    Type an equal sign ( = ) in the cell where you want to put the words form of your number

Type NUMBERTOTEXT (can be with large and small letters) and an open bracket sign after =

Input the number you want to convert to words/cell coordinate where it is

Type a close bracket sign

  • Press Enter
  • Done!

    Add-In Download for the Formula to Convert Number to Words in Excel

    Got confused when you need to paste the VBA code for the formula to convert your number to words? Then, you can just download the excel add-in we have created from the code here!

    After you download it, just activate the add-in in your excel workbook. For that, you need to display the Developer tab first in your excel if you haven’t.

    To display the Developer tab, go to Files > Options > Customize Ribbon (In Mac, go to Excel > Preferences > Ribbon & Toolbar > Ribbon Tab). Then, on the right box, make sure the Developer check box is checked.

    After the Developer tab is there in your excel workbook, follow these steps. Make sure you have downloaded the add-in we provide earlier and put it somewhere on your computer.

      Go to the Developer tab

    Click the Excel Add-Ins button

  • In the dialog box that shows up, browse to where the add-in file you download is to open it
  • Check the checkbox of the Numbertotext add-in and click OK

    Done! Now, you can use the NUMBERTOTEXT formula to convert your number into words!

    How to Convert Number to Words with Currency in Excel

    As number conversion to words is usually done for financial numbers, you may need to add currency in the conversion result. For that, you can use CONCATENATE, CONCAT, or the ampersand symbol (&) to add the currency word.

    For example, if you use the NUMBERTOTEXT custom formula to convert your number, then the writing will be like this. This assumes you want to add the “dollars” currency word behind the conversion result. We use the ampersand symbol to add the currency word for this.

    Don’t forget to add a space in front of the “dollars” word.

    Here is the implementation example of this method in excel.

    Quite easy, isn’t it?

    How to Capitalize Each First Letter in the Result from Converting a Number to Words in Excel: PROPER

    If you need to capitalize the first letter of each word from the number conversion, then you need a specific formula. That formula is PROPER.

    You can envelop the number conversion formula you use with PROPER to do the capitalization. Generally, here is the general writing form of that, assuming you use the NUMBERTOTEXT formula.

    Simple, isn’t it? And here is the example of the PROPER usage for the conversion result.

    How to Capitalize All Letters in the Result from Converting a Number to Words in Excel: UPPER

    What about if we want to capitalize all the letters instead? For that, you should use UPPER!

    The way to use UPPER here is the same as the way we use PROPER earlier. Here is the general writing form of the UPPER implementation to our NUMBERTOTEXT formula.

    And here is the implementation example of that writing.

    Exercise

    After you have learned how to convert numbers to words in excel using various methods, let’s do an exercise! We make this exercise so you can understand more practically about this tutorial topic.

    Download the exercise file from the following link and do the instructions. Download the answer if you have done the exercise and sure about the results!

    Link to the exercise file:
    Download here

    Instruction:

    Additional Note

    • The NUMBERTOTEXT formula cannot be used to convert decimal digits you have in your number to words
    • If you input the VBA code manually, then you won’t find the NUMBERTOTEXT formula if you create a new workbook. You must use the add-in for that or you must paste the VBA code to create the NUMBERTOTEXT formula again

    Related tutorials you should learn too:

    Источник

  • totn Excel Functions


    This Excel tutorial explains how to convert number into words (with screenshots and step-by-step instructions).

    Question: In Microsoft Excel, how can I convert a numeric value to words? For example, for a value of 1, could the cell show the word «one» instead?

    Microsoft Excel

    Answer: There is no-built in Excel function that will convert a number into words. Instead, you need to create a custom function to convert the number into words yourself. Let’s explore how.

    To see the completed function and how it is used in the example below, download the example spreadsheet.

    Download Example

    TIP: When you create a custom function in Excel, it will create macro code. When you open your file after creating the custom function, it will warn that there are macros in the spreadsheet. You will need to enable the macros for the function to work properly.

    Let’s get started. First, you’ll need to open your Excel spreadsheet and press Alt+F11 to open the Microsoft Visual Basic for Applications window. Under the Insert menu, select Module.

    Microsoft Excel

    This will insert a new module in your spreadsheet called Module1. Paste the following two functions into the new module.

    ' Example created by techonthenet.com
    Function EnglishNumber(ByVal N As Currency) As String
    
       Const Thousand = 1000@
       Const Million = Thousand * Thousand
       Const Billion = Thousand * Million
       Const Trillion = Thousand * Billion
    
       If (N = 0@) Then EnglishNumber = "zero": Exit Function
    
       Dim Buf As String: If (N < 0@) Then Buf = "negative " Else Buf = ""
       Dim Frac As Currency: Frac = Abs(N - Fix(N))
       If (N < 0@ Or Frac <> 0@) Then N = Abs(Fix(N))
       Dim AtLeastOne As Integer: AtLeastOne = N >= 1
    
       If (N >= Trillion) Then
          Buf = Buf & EnglishNumberDigitGroup(Int(N / Trillion)) & " trillion"
          N = N - Int(N / Trillion) * Trillion
          If (N >= 1@) Then Buf = Buf & " "
       End If
    
       If (N >= Billion) Then
          Buf = Buf & EnglishNumberDigitGroup(Int(N / Billion)) & " billion"
          N = N - Int(N / Billion) * Billion
          If (N >= 1@) Then Buf = Buf & " "
       End If
    
       If (N >= Million) Then
          Buf = Buf & EnglishNumberDigitGroup(N  Million) & " million"
          N = N Mod Million
          If (N >= 1@) Then Buf = Buf & " "
       End If
    
       If (N >= Thousand) Then
          Buf = Buf & EnglishNumberDigitGroup(N  Thousand) & " thousand"
          N = N Mod Thousand
          If (N >= 1@) Then Buf = Buf & " "
       End If
    
       If (N >= 1@) Then
          Buf = Buf & EnglishNumberDigitGroup(N)
       End If
    
       EnglishNumber = Buf
    End Function
    
    Private Function EnglishNumberDigitGroup(ByVal N As Integer) As String
    
       Const Hundred = " hundred"
       Const One = "one"
       Const Two = "two"
       Const Three = "three"
       Const Four = "four"
       Const Five = "five"
       Const Six = "six"
       Const Seven = "seven"
       Const Eight = "eight"
       Const Nine = "nine"
       Dim Buf As String: Buf = ""
       Dim Flag As Integer: Flag = False
    
       Select Case (N  100)
          Case 0: Buf = "": Flag = False
          Case 1: Buf = One & Hundred: Flag = True
          Case 2: Buf = Two & Hundred: Flag = True
          Case 3: Buf = Three & Hundred: Flag = True
          Case 4: Buf = Four & Hundred: Flag = True
          Case 5: Buf = Five & Hundred: Flag = True
          Case 6: Buf = Six & Hundred: Flag = True
          Case 7: Buf = Seven & Hundred: Flag = True
          Case 8: Buf = Eight & Hundred: Flag = True
          Case 9: Buf = Nine & Hundred: Flag = True
       End Select
    
       If (Flag <> False) Then N = N Mod 100
       If (N > 0) Then
          If (Flag <> False) Then Buf = Buf & " "
       Else
          EnglishNumberDigitGroup = Buf
          Exit Function
       End If
    
       Select Case (N  10)
          Case 0, 1: Flag = False
          Case 2: Buf = Buf & "twenty": Flag = True
          Case 3: Buf = Buf & "thirty": Flag = True
          Case 4: Buf = Buf & "forty": Flag = True
          Case 5: Buf = Buf & "fifty": Flag = True
          Case 6: Buf = Buf & "sixty": Flag = True
          Case 7: Buf = Buf & "seventy": Flag = True
          Case 8: Buf = Buf & "eighty": Flag = True
          Case 9: Buf = Buf & "ninety": Flag = True
       End Select
    
       If (Flag <> False) Then N = N Mod 10
       If (N > 0) Then
          If (Flag <> False) Then Buf = Buf & "-"
       Else
          EnglishNumberDigitGroup = Buf
          Exit Function
       End If
    
       Select Case (N)
          Case 0:
          Case 1: Buf = Buf & One
          Case 2: Buf = Buf & Two
          Case 3: Buf = Buf & Three
          Case 4: Buf = Buf & Four
          Case 5: Buf = Buf & Five
          Case 6: Buf = Buf & Six
          Case 7: Buf = Buf & Seven
          Case 8: Buf = Buf & Eight
          Case 9: Buf = Buf & Nine
          Case 10: Buf = Buf & "ten"
          Case 11: Buf = Buf & "eleven"
          Case 12: Buf = Buf & "twelve"
          Case 13: Buf = Buf & "thirteen"
          Case 14: Buf = Buf & "fourteen"
          Case 15: Buf = Buf & "fifteen"
          Case 16: Buf = Buf & "sixteen"
          Case 17: Buf = Buf & "seventeen"
          Case 18: Buf = Buf & "eighteen"
          Case 19: Buf = Buf & "nineteen"
       End Select
    
       EnglishNumberDigitGroup = Buf
    
    End Function

    Your Excel window should look as follows:

    Microsoft Excel

    Click the Save button (disk icon) and then go back to your spreadsheet window.

    You can now use the EnglishNumber function to convert a number to words. It will work just like any other worksheet function. Just reference the EnglishNumber function in your Excel spreadsheet as follows:

    Microsoft Excel

    Based on the spreadsheet above, the EnglishNumber function will return the following:

    =EnglishNumber(1)
    Result: "one"
    
    =EnglishNumber(125)
    Result: "one hundred twenty-five"
    
    =EnglishNumber(3278)
    Result: "three thousand two hundred seventy-eight"

    Often you need converting a numeric value into certain language – English (Russian, German, etc.) in Excel. Since by default this program has no ready-made function to make these actions, we will create our custom function using Excel Macros.

    

    Converting a number into text, we need performing three simple steps:

    1. Open the ALT + F11 VBA editor.
    2. Create a new module and write a function in it in a special way: Use “Function” instead of “Sub” there. In this definite case, the function “SpellCurr” will be exposed in Shift+ F3 function – Category: “User Defined”.
    3. Font code 128.

    4. Insert the code into the Module and save it there (be very attentive doing it!):

    


    Function SpellCurr(ByVal MyNumber, _
    Optional MyCurrency As String = "Rupee", _
    Optional MyCurrencyPlace As String = "P", _
    Optional MyCurrencyDecimals As String = "Paisa", _
    Optional MyCurrencyDecimalsPlace As String = "S")
    '***************************************************'
              Dim Rupees, Paisa, Temp
              Dim DecimalPlace, Count
              ReDim Place(9) As String
              Place(2) = " Thousand "
              Place(3) = " Million "
              Place(4) = " Billion "
              Place(5) = " Trillion "
              'String representation of amount.
              MyNumber = Trim(Str(MyNumber))
              'Position of decimal place 0 if none.
              DecimalPlace = InStr(MyNumber, ".")
              ' Convert Paisa and set MyNumber to Rupee amount.
              If DecimalPlace > 0 Then
                  Paisa = GetTens(Left(Mid(MyNumber, DecimalPlace + 1) & _
                      "00", 2))
                  MyNumber = Trim(Left(MyNumber, DecimalPlace - 1))
              End If
              Count = 1
              Do While MyNumber <> ""
                  Temp = GetHundreds(Right(MyNumber, 3))
                  If Temp <> "" Then Rupees = Temp & Place(Count) & Rupees
                  If Len(MyNumber) > 3 Then
                      MyNumber = Left(MyNumber, Len(MyNumber) - 3)
                  Else
                      MyNumber = ""
                  End If
                  Count = Count + 1
              Loop
                If MyCurrencyPlace = "P" Then
                    Select Case Rupees
                        Case ""
                            Rupees = MyCurrency & "s" & " Zero"
                        Case "One"
                            Rupees = MyCurrency & " One"
                        Case Else
                            Rupees = MyCurrency & "s " & Rupees
                    End Select
                Else
                    Select Case Rupees
                        Case ""
                            Rupees = "Zero " & MyCurrency & "s"
                        Case "One"
                            Rupees = "One " & MyCurrency
                        Case Else
                            Rupees = Rupees & " " & MyCurrency & "s"
                    End Select
                End If
              If MyCurrencyDecimalsPlace = "S" Then
                    Select Case Paisa
                        Case ""
                            Paisa = " Only"
                        Case "One"
                            Paisa = " and One " & MyCurrencyDecimals & " Only"
                        Case Else
                            Paisa = " and " & Paisa & " " & MyCurrencyDecimals & "s Only"
                    End Select
              Else
                    Select Case Paisa
                        Case ""
                            Paisa = " Only"
                        Case "One"
                            Paisa = " and " & MyCurrencyDecimals & " One " & " Only"
                        Case Else
                            Paisa = " and " & MyCurrencyDecimals & "s " & Paisa & " Only"
                    End Select
              End If
              SpellCurr = Rupees & Paisa
          End Function
          '*******************************************
          ' Converts a number from 100-999 into text *
          '*******************************************
          Function GetHundreds(ByVal MyNumber)
              Dim Result As String
              If Val(MyNumber) = 0 Then Exit Function
              MyNumber = Right("000" & MyNumber, 3)
              ' Convert the hundreds place.
              If Mid(MyNumber, 1, 1) <> "0" Then
                  Result = GetDigit(Mid(MyNumber, 1, 1)) & " Hundred "
              End If
              ' Convert the tens and ones place.
              If Mid(MyNumber, 2, 1) <> "0" Then
                  Result = Result & GetTens(Mid(MyNumber, 2))
              Else
                  Result = Result & GetDigit(Mid(MyNumber, 3))
              End If
              GetHundreds = Result
          End Function
          '*********************************************
          ' Converts a number from 10 to 99 into text. *
          '*********************************************
         Function GetTens(TensText)
              Dim Result As String
              Result = "" ' Null out the temporary function value.
              If Val(Left(TensText, 1)) = 1 Then ' If value between 10-19...
                  Select Case Val(TensText)
                      Case 10: Result = "Ten"
                      Case 11: Result = "Eleven"
                      Case 12: Result = "Twelve"
                      Case 13: Result = "Thirteen"
                      Case 14: Result = "Fourteen"
                      Case 15: Result = "Fifteen"
                      Case 16: Result = "Sixteen"
                      Case 17: Result = "Seventeen"
                      Case 18: Result = "Eighteen"
                      Case 19: Result = "Nineteen"
                      Case Else
                  End Select
              Else ' If value between 20-99...
                  Select Case Val(Left(TensText, 1))
                      Case 2: Result = "Twenty "
                      Case 3: Result = "Thirty "
                      Case 4: Result = "Forty "
                      Case 5: Result = "Fifty "
                      Case 6: Result = "Sixty "
                      Case 7: Result = "Seventy "
                      Case 8: Result = "Eighty "
                      Case 9: Result = "Ninety "
                      Case Else
                  End Select
                  Result = Result & GetDigit _
                      (Right(TensText, 1)) ' Retrieve ones place.
              End If
              GetTens = Result
          End Function
          '*******************************************
          ' Converts a number from 1 to 9 into text. *
          '*******************************************
          Function GetDigit(Digit)
              Select Case Val(Digit)
                  Case 1: GetDigit = "One"
                  Case 2: GetDigit = "Two"
                  Case 3: GetDigit = "Three"
                  Case 4: GetDigit = "Four"
                  Case 5: GetDigit = "Five"
                  Case 6: GetDigit = "Six"
                  Case 7: GetDigit = "Seven"
                  Case 8: GetDigit = "Eight"
                  Case 9: GetDigit = "Nine"
                  Case Else: GetDigit = ""
              End Select
          End Function

    In the settings of the function, you can add your own currency:

    Font code 128.

    Download converter number to words in Excel

    VBA Macro code converts numbers to words. After inserting this code into the macro editor module, we have a new function available as FX button. Now you can quickly “convert” the sum written in numbers into words. To use the ready-made solution, we recommend downloading the following example working with numbers and words in Excel. This file contains the already prepared user-defined function and the VBA code, available in the module from the editor.

    It’s common to find numbers stored as text in Excel. This leads to incorrect calculations when you use these cells in Excel functions such as SUM and AVERAGE (as these functions ignore cells that have text values in it). In such cases, you need to convert cells that contain numbers as text back to numbers.

    Now before we move forward, let’s first look at a few reasons why you may end up with a workbook that has numbers stored as text.

    1. Using ‘ (apostrophe) before a number.
      • A lot of people enter apostrophe before a number to make it text. Sometimes, it’s also the case when you download data from a database. While this makes the numbers show up without the apostrophe, it impacts the cell by forcing it to treat the numbers as text.
    2. Getting numbers as a result of a formula (such as LEFT, RIGHT, or MID)
      • If you extract the numerical part of a text string (or even a part of a number) using the TEXT functions, the result is a number in the text format.

    Now, let’s see how to tackle such cases.

    Convert Text to Numbers in Excel

    In this tutorial, you’ll learn how to convert text to numbers in Excel.

    The method you need to use depends on how the number has been converted into text. Here are the ones that are covered in this tutorial.

    • Using the ‘Convert to Number’ option.
    • Change the format from Text to General/Number.
    • Using Paste Special.
    • Using Text to Columns.
    • Using a Combination of VALUE, TRIM, and CLEAN function.

    Convert Text to Numbers Using ‘Convert to Number’ Option

    When an apostrophe is added to a number, it changes the number format to text format. In such cases, you’ll notice that there is a green triangle at the top left part of the cell.

    Convert Text to Numbers in Excel - Green Triangle

    In this case, you can easily convert numbers to text by following these steps:

    • Select all the cells that you want to convert from text to numbers.Convert Text to Numbers in Excel - Select Cells Green Triangle
    • Click on the yellow diamond shape icon that appears at the top right. From the menu that appears, select ‘Convert to Number’ option.

    This would instantly convert all the numbers stored as text back to numbers. You would notice that the numbers get aligned to the right after the conversion (while these were aligned to the left when stored as text).

    Convert Text to Numbers by Changing Cell Format

    When the numbers are formatted as text, you can easily convert it back to numbers by changing the format of the cells.

    Here are the steps:

    • Select all the cells that you want to convert from text to numbers.
    • Go to Home –> Number. In the Number Format drop-down, select General.

    This would instantly change the format of the selected cells to General and the numbers would get aligned to the right. If you want, you can select any of the other formats (such as Number, Currency, Accounting) which will also lead to the value in cells being considered as numbers.

    Also read: How to Convert Serial Numbers to Dates in Excel

    Convert Text to Numbers Using Paste Special Option

    To convert text to numbers using Paste Special option:

    Convert Text to Numbers Using Text to Column

    This method is suitable in cases where you have the data in a single column.

    Here are the steps:

    • Select all the cells that you want to convert from text to numbers.
    • Go to Data –> Data Tools –> Text to Columns.Convert Text to Numbers in Excel - text to column
    • In the Text to Column Wizard:

    While you may still find the resulting cells to be in the text format, and the numbers still aligned to the left, now it would work in functions such as SUM and AVERAGE.

    Convert Text to Numbers Using the VALUE Function

    You can use a combination of VALUE, TRIM and CLEAN function to convert text to numbers.

    • VALUE function converts any text that represents a number back to a number.
    • TRIM function removes any leading or trailing spaces.
    • CLEAN function removes extra spaces and non-printing characters that might sneak in if you import the data or download from a database.

    Suppose you want convert cell A1 from text to numbers, here is the formula:

    =VALUE(TRIM(CLEAN(A1)))

    If you want to apply this to other cells as well, you can copy and use the formula.

    Finally, you can convert the formula to value using paste special.

    You May Also Like the Following Excel Tutorials:

    • Multiply in Excel Using Paste Special.
    • How to Convert Text to Date in Excel (8 Easy Ways)
    • How to Convert Numbers to Text in Excel
    • Convert Formula to Values Using Paste Special.
    • Excel Custom Number Formatting.
    • Convert Time to Decimal Number in Excel
    • Change Negative Number to Positive in Excel
    • How to Capitalize First Letter of a Text String in Excel
    • Convert Scientific Notation to Number or Text in Excel
    • How To Convert Date To Serial Number In Excel?

    Понравилась статья? Поделить с друзьями:
  • Word это редактор схем
  • Words 4 pictures 1 word answers
  • Word это просто скачать
  • Words 4 pics 1 word ответы
  • Wordpress product import export with excel for woocommerce nulled