I need to SUM the $ Amounts in column B but only include $ Amounts when Column A has "Closed" as the status. Can you help me please? I have been trying for 2 days.
myLastColumn = .Cells(1, Columns.Count).End(xlToLeft).Column
myLastRow = .Cells(Rows.Count, 1).End(xlUp).Row
ReqAmt = Range("N" & Rows.Count).End(xlUp).Row
If ReqAmt < 2 Then RecAmt = 2
Range("V2") = Application.WorksheetFunction.SumIf(Range("N2:N" & ReqAmt), "Closed","O2
Cells(1, myLastColumn + 1).Value = "$ Requested"
Bookmarks