I am trying to use this macro to "save workbook" only if one cell value is higher than another cell value
is this possible ?
![]()
With Worksheets("Dashboard") If .Range("N11").Value > .Range("N12").Value Then Application.Workbooks("Profit Maximizer.xlsm").Save End If End With
Bookmarks