Hi. I'm a newbie regarding the use of MS Access and i have some problem that i would like to ask for a help or an answer..
i use this EXCEL formula
then i create the same system on MS Access. I created a query so that this function on MS Excel will also calculate/work on my MS Access Database. and i use this code.
and theres an error appearing on my screen saying The expression you entered contains invalid intax. You may have entered a comma without a preceding value or identifier.
Then when i click Okay. the word "MOD" is highlighted.
may anyone please help me on my problem? I'll appreciate every reply and suggestion. Thank you in advanced :)
i use this EXCEL formula
Code:
=IF(ISBLANK(I5),"",(NETWORKDAYS(F5,I5,HolidayList)-1)*(DayEnd-DayStart)+IF(NETWORKDAYS(I5,I5,HolidayList),MEDIAN(MOD(I5,1),DayEnd,DayStart),DayEnd)-MEDIAN(NETWORKDAYS(F5,F5,HolidayList)*MOD(F5,1),DayEnd,DayStart))
Code:
IIf(ISBLANK([Date Forwarded to IRM]),"",(Workdays([Date Received by APA],[Date Forwarded to IRM])-1)*EndDate-StartDate)+IIF(Workdays([Date Forwarded to IRM],[Date Forwarded to IRM]), MEDIAN(MOD([Date Forwarded to IRM],1),EndDate,StartDate),EndDate)-MEDIAN(Workdays([Date Received by APA],[Date Received by APA])*MOD([Date Received by APA],1),EndDate,StartDate))
Then when i click Okay. the word "MOD" is highlighted.
may anyone please help me on my problem? I'll appreciate every reply and suggestion. Thank you in advanced :)
Comment