Dear All,
I want to create a database, in which I have to maintain Production Plan for the year. The condition is that every 2nd and 4th Saturday & all the Sundays in a month will be Holiday. There can be more holidays in a year for which there will not or should not be any production plan.
Can you please guide me, what should be my table structure?
I have created following tables: 1) tblDays 2)tblMonths 3)tblYears 4)tblHolidays. And by using functions
) in the query, I am able to generate Dates for the entire year. Now I want to indicate non working days wrt Saturdays, Sundays and other Holidays, in other query, for which I am not able to figure out for alternate Saturdays.
thanks
regards
Narender Sagar
I want to create a database, in which I have to maintain Production Plan for the year. The condition is that every 2nd and 4th Saturday & all the Sundays in a month will be Holiday. There can be more holidays in a year for which there will not or should not be any production plan.
Can you please guide me, what should be my table structure?
I have created following tables: 1) tblDays 2)tblMonths 3)tblYears 4)tblHolidays. And by using functions
Code:
dteDate: DateSerial(tblYears.Year,tblMonths.Month,tblDays.Day)
thanks
regards
Narender Sagar
Comment