NETWORKDAYS

  • Thread starter Thread starter Randal
  • Start date Start date
R

Randal

Why can't I use NETWORKDAYS in a query? Access help states that "you may
need to install msowcf.dll." but that file is installed and I still get the
error "Undefined function 'NETWORKDAYS in expression."
 
Hi,


Try to use a cover function:


Query:
===================================
SELECT myCover( someFields ) FROM ...
===================================

and, in a module:


================================
Public Function myCover( ... arguments ... ) as ...
myCover = someAPIFunction( ... arguments... )
End Function
================================



Hoping it may help,
Vanderghast, Access MVP
 
Back
Top