Reputation: 73
Current formula:
=IF(AND(N2>B16,L2>O2),SORTN({L2,N2,O2,Q2},1,0,2,FALSE),"")
Additional Information:
Problem:
Upvotes: 0
Views: 34
Reputation: 19095
That cannot be done with a spreadsheet formula, because formula results only depend on the source data you give through parameters, and will change dynamically when the source data changes. You cannot use a formula to create static values that remain the same forever to archive those values in the spreadsheet.
In other words, you will need a script. See Apps Script copy row value in History Sheet to first empty row for an example of how to do that.
Upvotes: 1