How to get cell value in formula

Closed
Arihant - Aug 9, 2009 at 12:17 AM
 Guy - Aug 10, 2009 at 01:31 AM
Hello,

I am writing a formula where I need to get values of cell A1 and B1

I need below text in cell C1

create.put("A1","B1");

What formula shall I write in excel to achieve this.

Thanks in advance
Arihant

1 response

Range("C3").Value = Range("A1") & Range("B1")
0