Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am using a function called SpellNumber
=SpellNumber(J28) .... to automatically enter a dollar amount in words, and it works just fine. But I want to place two asterisks (**) before and after those words. So I tried using the CONCATENATE formula =CONCATENATE(**,=SpellNumber(J28),**) .... but it am getting an error message saying that this formula is not formatted correctly. What is wrong with my formatting? Please help. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try,
="**" &SpellNumber(J28)&"**" Mike "Candace" wrote: I am using a function called SpellNumber =SpellNumber(J28) ... to automatically enter a dollar amount in words, and it works just fine. But I want to place two asterisks (**) before and after those words. So I tried using the CONCATENATE formula =CONCATENATE(**,=SpellNumber(J28),**) ... but it am getting an error message saying that this formula is not formatted correctly. What is wrong with my formatting? Please help. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You are missing the double quotes and don't need the 2nd equal sign.
=CONCATENATE("**",SpellNumber(J28),"**") "Candace" wrote: I am using a function called SpellNumber =SpellNumber(J28) ... to automatically enter a dollar amount in words, and it works just fine. But I want to place two asterisks (**) before and after those words. So I tried using the CONCATENATE formula =CONCATENATE(**,=SpellNumber(J28),**) ... but it am getting an error message saying that this formula is not formatted correctly. What is wrong with my formatting? Please help. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
putting a name in the name box | Excel Discussion (Misc queries) | |||
Putting 0's in Database | Excel Discussion (Misc queries) | |||
Putting together worksheets | Excel Discussion (Misc queries) | |||
Putting together a form | Excel Discussion (Misc queries) | |||
putting in a sum finction | Excel Discussion (Misc queries) |