Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Say I have A1=4 and A2="D3", can I write a macro to set D3=4, using the
information in A1:A2? -- Ellis Morgan |
#2
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Sub MakeItReal()
Dim strText As String strText = Range("A2").Text Range(strText).Value = Range("A1").Value End Sub -- Jim Cone Portland, Oregon USA . http://www.mediafire.com/PrimitiveSoftware . (Data Options add-in: row stuff/date picker/random stuff) "Ellis Morgan" wrote in message ... Say I have A1=4 and A2="D3", can I write a macro to set D3=4, using the information in A1:A2? -- Ellis Morgan |
#3
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
In article , Jim Cone
writes Sub MakeItReal() Dim strText As String strText = Range("A2").Text Range(strText).Value = Range("A1").Value End Sub Thanks Jim, just what I needed. -- Ellis Morgan |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Return cell address of a cell based on contents of cell. | Excel Worksheet Functions | |||
How can I insert the author name held in File/Properties in a cell | Excel Discussion (Misc queries) | |||
How make hyperlink refer to cell content rather than cell address. | Excel Discussion (Misc queries) | |||
I need to increase a number which is held in a cell by 1 | New Users to Excel | |||
store cell contents and cell address for comparsion & suming | Excel Programming |