Link to home
Start Free TrialLog in
Avatar of jclem1
jclem1Flag for United States of America

asked on

Excel formulas to access queries

IN the attached excel file columns J, K, and L are calculated, so far you all have helped me with column J and now I am struggling to finish the FRT Met or Overdue column, the excel formula is this =IF(OR(LEFT(M5,2)="CN",LEFT(M5,2)="KN"),"Met",IF(I5<=J5,"Met","Overdue")) and what I have come up with so far in access is this :

FRT Met or Overdue:
IIf(Left([WHY_MISS],2)="CN" Or

Left([WHY_MISS],2)="KN","Met",IIF([DUE_CMPLN_DATE]<=IIf([DATE_ESCALATED]<=[DESIRED_DD],[DESIRED_DD],IIf([DATE_ESCALAT

ED]>[DUE_SCHED_DATE],DateAdd("d",3,[DATE_ESCALATED]),[DUE_SCHED_DATE])),"Met","Overdue")) the problem may be parenthesis related but I can't seem to decipher it maybe I have been looking too long.

Lastly I will need to write something in my access query for when (column "K" which is FRT Met or Overdue) scores "overdue" I would like the month only from column I which is due_cmpln_date to populate.

Thanks
snipet.xls
Avatar of Smart_Man
Smart_Man
Flag of Egypt image

pardon me i lost it, can you please start with the excel question describing what is going on then saying what are you looking for ?

giving an example cell format would be helpful along with providing the formats and the files as you did.


waiting for your reply
Avatar of jclem1

ASKER

If you open the snipet file what I need is the formulas in columns K and L coded into an access query.  The headers are FRT Met or Overdue and Overdue Closed in Month, you will notice overdue closed in month has no formula as currently it is a manual field but I would like it to populate with the "Month" value in column "I" only when column "K" scores overdue.
ASKER CERTIFIED SOLUTION
Avatar of jclem1
jclem1
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial