sure, Excel has a thing called NetWorkDays which does this for you, Access does not. so this is a solution that i've used to calculate business days.<br><b><br>If Weekday([yourfieldname]) + 2 = 1 Or Weekday([yourfieldname]) + 2 = 7 Then<br>'Weekday 1 is Sunday, Weekday 7 is Saturday<br> If Weekday([yourfieldname]) + 2 = 1 Then<br> BusDays = RecdDate + 3<br> End If<br> If Weekday([yourfieldname]) + 2 = 7 Then<br> BusDays = RecdDate + 4<br> End If<br>'adds 3 days if date+2 =Sunday, 4 days if date+2 =Saturday<br>Else<br> BusDays = yourfieldname + 2<br>End If<br>''''''''''''''''''''Brian C. Famous, 2000''''''''''''''''<br></b><br><br>put your date field in where it says "yourfieldname", and then have another field named [BusDays], or whatever you want to call it (but then you have to change BusDays in the code above too.<br><br>let me know if you have any questions. <p>Brian Famous<br><a href=mailto:bfamous@ncdoi.net>bfamous@ncdoi.net</a><br><a href= > </a><br>