quick question
why have you used 65300 in your range select as it usually better to use the last filled row of data, Just a thought
secondly
what you could do is to do something like
Code:
Sub test()
Dim r As Range
Dim Lastrow As Long
Lastrow = Range("A" & Rows.Count).End(xlUp).Row
Set r = Range("A1:a" & Lastrow)
worksheets("Proposal").Range("G2").formula = worksheets("Data").Range("A" & Lastrow + 1).Formula = Application.WorksheetFunction.Max(r) + 1
End Sub
assuming your proposal sheet is called "proposal" and your data sheet is called data
or instead of turning the text white you could hide the column F
Dave