Dim NextRow As Long
With Sheet4
.Rows(3).Insert Shift:=xlShiftDown
.Rows(2).Copy Destination:=.Rows(3)
.Rows(2).ClearContents
.Cells(2, 1).Value = Range("Builder")
.Cells(2, 2).Value = Range("Job")
.Cells(2, 3).Value = Format(Range("Date"), "short date")
.Cells(2, 4).Value = Range("Invoice")
If Sheet1.OptionButton1.Value = True Then
.Cells(2, 5).Value = Range("rough")
End If
If Sheet1.optionbuttion2.Value = True Then
.Cells(2, 6).Value = Range("finish")
End If
End With
ActiveWorkbook.SaveAs Filename:= _
"C:\Builder\Master\Nichols Electric Master Invoice Ver.8.01.xls", FileFormat:= _
xlNormal, Password:="", WriteResPassword:="", ReadOnlyRecommended:=False _
, CreateBackup:=False
End Sub
Bookmarks