Hi
I am using Office 2003.
I have an Excel sheet where columns A to Z are data fields imported from an Access database. Columns AA to DO are formulae fields based on data in cells A to Z.
The worksheet data is updated via MS-Query and I have the settings of "fill down formulas in columns adjacent to data" and this works with columns AA to DL but not DM, DN or DO.
Column DM is to track week number so cell DO3 is 1 and all subsequent cells in DO indicate: =IF(DN4="","",IF(WEEKDAY(DN3)=1,DM3+1,DM3))
Column DN is for a "show" version of the date and is:
=IF(A3="","",A3)
Column DO is for the "week ending" and is:
=IF(DN3="","",IF(WEEKDAY(DN3)=1,DN3,DN3+(8-WEEKDAY(DN3))))
I am not the original author of the workbook and I'm trying to automate it but I'm not VBA savvy. However, I think the original cell in DM1 having to be a number and formlae thereafter is causing the problem. How can I re-write that so it is a formula too (if you think that is my problem)?
Thanks very much.
I am using Office 2003.
I have an Excel sheet where columns A to Z are data fields imported from an Access database. Columns AA to DO are formulae fields based on data in cells A to Z.
The worksheet data is updated via MS-Query and I have the settings of "fill down formulas in columns adjacent to data" and this works with columns AA to DL but not DM, DN or DO.
Column DM is to track week number so cell DO3 is 1 and all subsequent cells in DO indicate: =IF(DN4="","",IF(WEEKDAY(DN3)=1,DM3+1,DM3))
Column DN is for a "show" version of the date and is:
=IF(A3="","",A3)
Column DO is for the "week ending" and is:
=IF(DN3="","",IF(WEEKDAY(DN3)=1,DN3,DN3+(8-WEEKDAY(DN3))))
I am not the original author of the workbook and I'm trying to automate it but I'm not VBA savvy. However, I think the original cell in DM1 having to be a number and formlae thereafter is causing the problem. How can I re-write that so it is a formula too (if you think that is my problem)?
Thanks very much.