I'm trying to format cell based on cell to left side. What I want to do is, when cell to left side is not empty and lower than today's date then format.
=and(
TODAY()>INDIRECT(ADDRESS(ROW();COLUMN()-1))),
not(isblank(INDIRECT(ADDRESS(ROW();COLUMN()-1)))))
)
But google sheets doesn't accept this function. The question is, why?