I have a spreadsheet that uses a concatenated formula to copy values from column A to column B that looks like this: =CONCATENATE("(16)", " ", Master!A16)
They have asked me to write a macro to move the value from column B to column B in another worksheet. Here is my Vb:
Sub Macro1()
'
' Macro1 Macro
'
'
Application.ScreenUpdating = False
Worksheets("Master").Range("B1:B97").Copy
Worksheets("3500_Template").Range("B7:B102").PasteSpecial xlValue
SkipBlanks = True
Application.ScreenUpdating = True
End Sub
Everything works except when column A on original sheet is Blank, the concatenante formula still runs putting the first value in the field of column B, in this case (34), (35), etc. I do not want to copy those values to the second worksheet. I would like for the cells to be null. This is the first time I have tried to write a macro and I just started working with excel so forgive me if this does not make sense. Any help would be greatly appreciated![TABLE="width: 224"]
<tbody>[TR]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
They have asked me to write a macro to move the value from column B to column B in another worksheet. Here is my Vb:
Sub Macro1()
'
' Macro1 Macro
'
'
Application.ScreenUpdating = False
Worksheets("Master").Range("B1:B97").Copy
Worksheets("3500_Template").Range("B7:B102").PasteSpecial xlValue
SkipBlanks = True
Application.ScreenUpdating = True
End Sub
Everything works except when column A on original sheet is Blank, the concatenante formula still runs putting the first value in the field of column B, in this case (34), (35), etc. I do not want to copy those values to the second worksheet. I would like for the cells to be null. This is the first time I have tried to write a macro and I just started working with excel so forgive me if this does not make sense. Any help would be greatly appreciated![TABLE="width: 224"]
<tbody>[TR]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]