I need to change the formula in a google sheets cell depending on whether it is a Monday or not.
If it is Monday, =min(GoogleFinance(A2, "LOW", Today()-3))
works fine as Today()-3
is a FRIDAY(last trading day).
However if it is any other day, i need to use, =min(GoogleFinance(A2, "LOW", Today()-1))
to show the PREVIOUS day's low.
is there an if statement that works for this? I think i get the structure,
=if (day == Monday), =min(GoogleFinance(A2, "LOW", Today()-3), =min(GoogleFinance(A2, "LOW", Today()-1))
but i'm not sure about the day == monday
part.