danjames11
New Member
- Joined
- Apr 22, 2009
- Messages
- 14
I have a list of dates when people need to pay on excel and I have a tick box to tick when they have paid. Then I want the date to change to the next payment date (3 months on) and the tick box to untick itself. This seems quite complcated but I need to do this.
eg:
heres the list of dates
<table x:str="" style="border-collapse: collapse;" border="0" cellpadding="0" cellspacing="0" height="190" width="524"><col style="width: 110pt;" width="147"> <tbody><tr style="height: 16.5pt;" height="22"> <td class="xl23" style="height: 16.5pt; width: 110pt;" x:num="39955" align="left" height="22" width="147">22/05/2009 by here there is a tick box to say they have paid
</td> </tr> <tr style="height: 16.5pt;" align="left" height="22"> <td class="xl23" style="height: 16.5pt;" x:num="39956" height="22">23/05/2009</td> </tr> <tr style="height: 16.5pt;" align="left" height="22"> <td class="xl23" style="height: 16.5pt;" x:num="39957" height="22">24/05/2009</td> </tr> <tr style="height: 16.5pt;" align="left" height="22"> <td class="xl23" style="height: 16.5pt;" x:num="39958" height="22">25/05/2009</td> </tr> <tr style="height: 16.5pt;" align="left" height="22"> <td class="xl23" style="height: 16.5pt;" x:num="39959" height="22">26/05/2009</td> </tr> <tr style="height: 16.5pt;" align="left" height="22"> <td class="xl23" style="height: 16.5pt;" x:num="39960" height="22">27/05/2009</td> </tr> <tr style="height: 16.5pt;" align="left" height="22"> <td class="xl23" style="height: 16.5pt;" x:num="39961" height="22">28/05/2009</td> </tr> <tr style="height: 16.5pt;" align="left" height="22"> <td class="xl23" style="height: 16.5pt;" x:num="39962" height="22">29/05/2009</td> </tr> </tbody></table>
When i tick on the tick box i want the date to move on to the next 3 months by using the date function like this:
=DATE(YEAR(O14), MONTH(O14)+3, DAY(O14))
and the tick box to untick itslef for this next payment date.
Thanks in advance :D
eg:
heres the list of dates
<table x:str="" style="border-collapse: collapse;" border="0" cellpadding="0" cellspacing="0" height="190" width="524"><col style="width: 110pt;" width="147"> <tbody><tr style="height: 16.5pt;" height="22"> <td class="xl23" style="height: 16.5pt; width: 110pt;" x:num="39955" align="left" height="22" width="147">22/05/2009 by here there is a tick box to say they have paid
</td> </tr> <tr style="height: 16.5pt;" align="left" height="22"> <td class="xl23" style="height: 16.5pt;" x:num="39956" height="22">23/05/2009</td> </tr> <tr style="height: 16.5pt;" align="left" height="22"> <td class="xl23" style="height: 16.5pt;" x:num="39957" height="22">24/05/2009</td> </tr> <tr style="height: 16.5pt;" align="left" height="22"> <td class="xl23" style="height: 16.5pt;" x:num="39958" height="22">25/05/2009</td> </tr> <tr style="height: 16.5pt;" align="left" height="22"> <td class="xl23" style="height: 16.5pt;" x:num="39959" height="22">26/05/2009</td> </tr> <tr style="height: 16.5pt;" align="left" height="22"> <td class="xl23" style="height: 16.5pt;" x:num="39960" height="22">27/05/2009</td> </tr> <tr style="height: 16.5pt;" align="left" height="22"> <td class="xl23" style="height: 16.5pt;" x:num="39961" height="22">28/05/2009</td> </tr> <tr style="height: 16.5pt;" align="left" height="22"> <td class="xl23" style="height: 16.5pt;" x:num="39962" height="22">29/05/2009</td> </tr> </tbody></table>
When i tick on the tick box i want the date to move on to the next 3 months by using the date function like this:
=DATE(YEAR(O14), MONTH(O14)+3, DAY(O14))
and the tick box to untick itslef for this next payment date.
Thanks in advance :D