I am attempting to write a formula in a sheet to pull in a single value from another sheet when both the Area and yesterday's date match.
I have tried this:
=IF(AND({Area}, "Offsite", {Date Collected} = TODAY() - 1), {Daily Collection Amount}, "")
and this:
=IF({Area}, "Offsite", IF({Date Collected} = TODAY() - 1), {Daily Collection Amount}, "")
I think that is the closet I have gotten, but it is still wrong.