I am not sure how to do this on VBA, I want to sum a range that will start on P7, and also where will it show me the answer?
Sub suma()
Dim rng As Range
Dim answer As Long
LastRows = Sheets("Draft").Range("P" & Rows.Count).End(xlUp).Row
Set rng = AD.Worksheets("Draft").Range("P7" & LastRows)
answer = Application.WorksheetFunction.Sum(rng)
End Sub
Sub suma()
Dim rng As Range
Dim answer As Long
LastRows = Sheets("Draft").Range("P" & Rows.Count).End(xlUp).Row
Set rng = AD.Worksheets("Draft").Range("P7" & LastRows)
answer = Application.WorksheetFunction.Sum(rng)
End Sub