Value of a cell

  • Thread starter Thread starter chris
  • Start date Start date
C

chris

Hi

how can I get the value of a cells

Me.Cells(Row, 3) = Me.cells.Value(row,1) & Me.cells.value
(row,2)


did not work I have compilation error

What I want is in the column 3 concatinate the value of
column 1 and 2

Any help please
 
Hi
try:
Me.Cells(Row, 3).value = Me.cells(row,1).value & Me.cells
(row,2).value
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top