Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I need some help here. I would like to link some cells together. Some
cells contain text, others contain currency. For Example: A1 A2 A3 You owe me $10,000.00 Dollars! I would like this to happen: A5 You owe me $10,000.00 Dollars! Linking cells doesn't work, I have read all over that it can be done with VB. Except, there is no examples of what code would do this. I would like help writing this simple (not for me) scenario, I could make it work for what I need after that. Thanks, Josh |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Josh
try the following =A1 & " " TEXT(B1,"$#,##0.00") & " " & A3 HTH Frank Josh wrote: I need some help here. I would like to link some cells together. Some cells contain text, others contain currency. For Example: A1 A2 A3 You owe me $10,000.00 Dollars! I would like this to happen: A5 You owe me $10,000.00 Dollars! Linking cells doesn't work, I have read all over that it can be done with VB. Except, there is no examples of what code would do this. I would like help writing this simple (not for me) scenario, I could make it work for what I need after that. Thanks, Josh |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Think Frank meant:
In A5 put this formula: =A1 & " " TEXT(A2,"$#,##0.00") & " " & A3 -- Regards, Tom Ogilvy Frank Kabel wrote in message ... Hi Josh try the following =A1 & " " TEXT(B1,"$#,##0.00") & " " & A3 HTH Frank Josh wrote: I need some help here. I would like to link some cells together. Some cells contain text, others contain currency. For Example: A1 A2 A3 You owe me $10,000.00 Dollars! I would like this to happen: A5 You owe me $10,000.00 Dollars! Linking cells doesn't work, I have read all over that it can be done with VB. Except, there is no examples of what code would do this. I would like help writing this simple (not for me) scenario, I could make it work for what I need after that. Thanks, Josh |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks Tom for pointing this out (copy and paste error....)
Regards Frank Tom Ogilvy wrote: Think Frank meant: In A5 put this formula: =A1 & " " TEXT(A2,"$#,##0.00") & " " & A3 |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
"Frank Kabel" wrote in message ...
Thanks Tom for pointing this out (copy and paste error....) Regards Frank Tom Ogilvy wrote: Think Frank meant: In A5 put this formula: =A1 & " " TEXT(A2,"$#,##0.00") & " " & A3 Thankyou, Thankyou!!! I was tricked there for a little, there was an & missing from the formula. here is what it is =A1 & " " & TEXT(A2,"$#,##0.00") & " " & A3 You guys rock though! Thanks for replying so fast, I would have never figured it out Josh |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Linking cells with changing format | Excel Discussion (Misc queries) | |||
Retain Defautl Cell Format in Template | Excel Discussion (Misc queries) | |||
Retain value of merged cell in all unmerged cells | Excel Discussion (Misc queries) | |||
URGENT! Retain format of cells in pivot table upon refresh | Excel Discussion (Misc queries) | |||
Retain date format in cell | Excel Discussion (Misc queries) |