Nov 09 2023 11:54 PM
Hi! I am compiling an equipment list for our communications department comprising of communications equipment such as cameras, microphones etc... that they loan out to other departments. In the list, there is a column for return date and next to that, a column for who has processed the return (return_received_by).
I would like to write a formula to go in the "return date" column, so that if the return date is passed and no data is written in the "return_received_by" column, then the information in the "return date" column turns to bold red. How do I write the formula?
Nov 10 2023 12:55 AM
Hi @Paul_Noble
I would suggest doing the flag calculation in a helper column like E and possibly having C turn into 'Bad' colors when not returned in time.
=AND(D3=0,TODAY()>C3,C3>0)
Then you could quite easy, with Excel 365, add H2 to result in rows over due.
=FILTER(A:C,E:E=TRUE)
Nov 10 2023 01:12 AM
Nov 10 2023 03:27 AM