cfbeginner
MIS
Hi All,
Right now the below code gives me below colmuns
2006-Q2, 2006-Q3,2006-Q4,2007-Q1
<td class="table_form_header" width="10%">#DateFormat(DateAdd("q", 0, Now()), "yyyy-Q")##Quarter(DateAdd("q", 0, Now()))#</td>
<td class="table_form_header" width="10%">#DateFormat(DateAdd("q", 1, Now()), "yyyy-Q")##Quarter(DateAdd("q", 1, Now()))#</td>
<td class="table_form_header" width="10%">#DateFormat(DateAdd("q", 2, Now()), "yyyy-Q")##Quarter(DateAdd("q", 2, Now()))#</td>
<td class="table_form_header" width="10%">#DateFormat(DateAdd("q", 3, Now()), "yyyy-Q")##Quarter(DateAdd("q", 3, Now()))#</td>
How do I change the code so that it will start at
2006-Q1, instead of 2006-Q2?
Thanks