The info needs to be on a sheet that has a lot more info so the seperate tab wont work (it's a printed page) Here is what i did, i created a separate tab, i'll call it "data" here and i listed about 15 due dates
(well into 2012, so this will last for a while)
My main question now... i was wondering if there is any way to do it w/o having such a huge "if" statement.
(seriously it's like 20 or so nested if's)
As it stands here's a SMALL example:
Thanks again for any and all input and help
Code:
=IF('data'!A1=TODAY(),"Wash Today",IF('data'!B1=TODAY(),"Wash Today",IF('data'!C1=TODAY(),"Wash Today",IF('data'!D1=TODAY(),"Wash Today","Not due for wash"))))
data
<table style="font-family: Calibri,Arial; font-size: 11pt; background-color: rgb(255, 255, 255); padding-left: 2pt; padding-right: 2pt;" border="1" cellpadding="0" cellspacing="0"> <colgroup><col style="font-weight: bold; width: 30px;"><col style="width: 64px;"><col style="width: 68px;"><col style="width: 68px;"><col style="width: 64px;"><col style="width: 68px;"></colgroup><tbody><tr style="background-color: rgb(202, 202, 202); text-align: center; font-weight: bold; font-size: 8pt;"><td>
</td><td>A</td><td>B</td><td>C</td><td>D</td><td>E</td></tr><tr style="height: 18px;"><td style="font-size: 8pt; background-color: rgb(202, 202, 202); text-align: center;">1</td><td>Truck1</td><td style="text-align: right;">8/23/2011</td><td style="text-align: right;">8/30/2011</td><td style="text-align: right;">9/6/2011</td><td style="text-align: right;">9/13/2011</td></tr><tr style="height: 18px;"><td style="font-size: 8pt; background-color: rgb(202, 202, 202); text-align: center;">2</td><td>Truck2</td><td style="text-align: right;">8/24/2011</td><td style="text-align: right;">8/31/2011</td><td style="text-align: right;">9/7/2011</td><td style="text-align: right;">9/14/2011</td></tr><tr style="height: 18px;"><td style="font-size: 8pt; background-color: rgb(202, 202, 202); text-align: center;">3</td><td>Truck3</td><td style="text-align: right;">8/25/2011</td><td style="text-align: right;">9/1/2011</td><td style="text-align: right;">9/8/2011</td><td style="text-align: right;">9/15/2011</td></tr></tbody></table>
Wash
<table style="font-family: Calibri,Arial; font-size: 11pt; background-color: rgb(255, 255, 255); padding-left: 2pt; padding-right: 2pt;" border="1" cellpadding="0" cellspacing="0"> <colgroup><col style="font-weight: bold; width: 30px;"><col style="width: 64px;"><col style="width: 64px;"></colgroup><tbody><tr style="background-color: rgb(202, 202, 202); text-align: center; font-weight: bold; font-size: 8pt;"><td>
</td><td>A</td><td>B</td></tr><tr style="height: 18px;"><td style="font-size: 8pt; background-color: rgb(202, 202, 202); text-align: center;">1</td><td>Truck1</td><td>Wash Today</td></tr><tr style="height: 18px;"><td style="font-size: 8pt; background-color: rgb(202, 202, 202); text-align: center;">2</td><td>Truck2</td><td>Not due for wash</td></tr><tr style="height: 18px;"><td style="font-size: 8pt; background-color: rgb(202, 202, 202); text-align: center;">3</td><td>Truck3</td><td>Not due for wash</td></tr></tbody></table>
<table style="font-family: Arial; font-size: 10pt; border-style: groove; border-color: rgb(0, 255, 0); background-color: rgb(255, 252, 249); color: rgb(0, 0, 0);"><tbody><tr><td>
Spreadsheet Formulas</td></tr><tr><td><table style="font-family: Arial; font-size: 9pt;" border="1" cellpadding="2" cellspacing="0"><tbody><tr style="background-color: rgb(202, 202, 202); font-size: 10pt;"><td>Cell</td><td>Formula</td></tr><tr><td>B1</td><td>=IF(data!B1=TODAY
(),"Wash Today",IF
(data!C1=TODAY(),"Wash Today",IF(data!D1=TODAY(),"Wash Today",IF(data!E1=TODAY(),"Wash Today","Not due for wash"))))</td></tr><tr><td>B2</td><td>=IF(data!B2=TODAY
(),"Wash Today",IF
(data!C2=TODAY(),"Wash Today",IF(data!D2=TODAY(),"Wash Today",IF(data!E2=TODAY(),"Wash Today","Not due for wash"))))</td></tr><tr><td>B3</td><td>=IF(data!B3=TODAY
(),"Wash Today",IF
(data!C3=TODAY(),"Wash Today",IF(data!D3=TODAY(),"Wash Today",IF(data!E3=TODAY(),"Wash Today","Not due for wash"))))</td></tr></tbody></table></td></tr></tbody></table>