combine information in two cells into the third column

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I've been trying to write a macro as below to commit above task, but errors
like "variable not defined" and "sub or function not defined" keep poping up.

Sub Macro1()
x = 3
Do While ActiveCell(x, 11).Value <> ""
Cells(x, 10).Value = "PO#" + Cell(x, 1).Value + " " + Cell(x, 3).Value
x = x + 1
Loop

End Sub

Could you please help? I'm a beginner at the stage and so happy to find out
this wonderful community.
 
after Sub Macro1()
Type:

Dim x as Integer

That will define your variable for the system.
 
May

Couple of things to change....................note the "&" which is the
concatenation operator. "+" is for arithmetic.

Also "Cells" instead of "Cell"

Sub Macro1()
Dim x As Integer
x = 3
Do While Cells(x, 11).Value <> ""
Cells(x, 10).Value = "PO#" & Cells(x, 1).Value & " " & Cells(x, 3).Value
x = x + 1
Loop

End Sub


Gord Dibben MS Excel MVP
 

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