Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi every one
I have concatenated a string. My intention is to use to as a link or DDE to retrieve some data from outside source. This string is like that: =PROPHETX|QUOTE!'CU6C2000[DTN:CBOT]?Last' Is there any one who can tell me how to do it by VB or any other way. regards Mason |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If the values to be concatenated are in A1, B1 & C1:
=A1&B1&C1 You may insert literals: =A1&"|"&B1&"!"&C1 HTH -- AP "mwlau" a écrit dans le message de news: ... Hi every one I have concatenated a string. My intention is to use to as a link or DDE to retrieve some data from outside source. This string is like that: =PROPHETX|QUOTE!'CU6C2000[DTN:CBOT]?Last' Is there any one who can tell me how to do it by VB or any other way. regards Mason |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Your string looks like a formula. You can convert a concatenated string into
a real formula: In B1, put = In C1, put Sheet2! In D1, put Z100 In A1, put =B1 & C1 & D1 and A1 will display: =Sheet2!Z100 but this is only a string. Enter this tiny macro: Sub Macro1() Range("A2").Value = Range("A1").Value End Sub and run it and the real formula will be deposited in A2 -- Gary's Student "mwlau" wrote: Hi every one I have concatenated a string. My intention is to use to as a link or DDE to retrieve some data from outside source. This string is like that: =PROPHETX|QUOTE!'CU6C2000[DTN:CBOT]?Last' Is there any one who can tell me how to do it by VB or any other way. regards Mason |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Concatenate | Excel Discussion (Misc queries) | |||
Using Concatenate inside a vlookup | Excel Worksheet Functions | |||
Match and Concatenate ?? | Excel Worksheet Functions | |||
COPY A CONCATENATE CELL TO BLANK CELL PUTTING IN THE NEXT BLANK C. | Excel Discussion (Misc queries) | |||
Concatenate cells without specifying/writing cell address individually | Excel Discussion (Misc queries) |