Hi guys, I'll keep this simple.
The setup:
This works fine:
This gives me a syntax error:
All I'm trying to do is add some more text to the string that is at header
Regards,
Paul
The setup:
HTML:
Dim header As Range
ThisWorkbook.Sheets("Category 1 Tasks").Select
Set header = Cells(Rows.Count, 1).End(xlUp).Offset(47, 0)
'adding the title
header.Select
Selection.Font.Bold = True
With Selection
This works fine:
HTML:
.Value = "=""3.2.""&(RIGHT(" & header.Offset(3, 3).Address & ",3))&"" ""&" & header.Offset(3, 3).Address
This gives me a syntax error:
HTML:
.Value = "=""3.2.""&(RIGHT(" & header.Offset(3, 3).Address & ",3))&"" ""&" & header.Offset(3, 3).Address &"" ""&" & header.Offset(4, 3).Address
All I'm trying to do is add some more text to the string that is at header
Regards,
Paul