A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
You are welcome. You may also give feedback on it.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I have multiple columns in my spreadsheet.
The condition will be if the today()>P+R, X not equal/less than to J and do shown in X, then i would like to show those are overdue in RED, and those upcoming for payment(P+R) in GREEN, if only they have not been paid.
column
J - invoice amount
P - invoice date
R - payment term (30/45 days depends on different clients)
W - bank received payment date
X - bank received amount
I've seen suggestions for conditional formatting based on one criteria, but I'm not sure how to set multiple criteria to get it to work.
Please can someone advise how to do this.
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Answer accepted by question author
Answer accepted by question author
Answer accepted by question author
This is for red instead of additional one.
Answer accepted by question author
=Or(AND(P3+R3<TODAY(),P3<>"",W3=""),J3<>X3)
Answer accepted by question author
Answer accepted by question author
Try this one.
=Or(AND(P2+R2<TODAY(),W2=""),J2<>X2)
Answer accepted by question author