Here is what I want to accomplish: If the Employee Number is Blank and the Assignment Role is Not Blank, put in "AP". If the Employee Number is Not Blank, and If the Assignment Role is C, L, or S Adjunct, put in "PT", any other item in the drop down for Assignment Role should be "FT", as long as the Employee Number is Not Blank. If Employee Number is Not Blank and Assignment Role is Blank, leave blank.
IF(AND(NOT(ISBLANK([Assignment Role]@row, [Employee ID]@row, "AP", IF([Assignment
Role]@row = "C Adjunct", "PT", IF([Assignment
Role]@row = "L Adjunct", "PT", IF([Assignment
Role]@row = "S Adjunct", "PT", IF([Assignment
Role]@row = "" ", "", FT"))))
I can get parts of it to work, but cannot get the IS NOT BLANK or IS BLANK to work properly. Thanks for any help.