carabale
Board Regular
- Joined
- Apr 29, 2004
- Messages
- 133
Here I am again. I am having problems with a multiple if syntax.
I have three columns
Desired_Presentation (col J) | Award (col K) | SUSP_Date
Desired presentation will be blank or will contain a date.
Award has a dropdown menu with three options LOM, MSM, and FLCROSS
SUSP_Date (col L) should have a formula that will provide a message or a date depending on what is entered in columns J and K.
If J is blank and K is LOM, L will read 120 days from desired presentation
If J has a date and K is LOM, L will have a date 120 days minus date in J
If J is blank and K is MSM, L will read 60 days from desired presentation date
If J has a date and K is MSM, L will have a date 60 days minus date in J
If J is blank and K is FLCROSS, L will read 60 days from desired presentation date
If J has a date and K is FLCROSS, L will have a date 60 days minus date in J
I came up with this:
=IF (AND (K2="LOM", J2=""),"120 Days Before Presentation”, IF (AND (K2<>"LOM", J2=""),"60 Days Before Presentation",""))
But does not do all I want it to do and when I try to add ifs well it just tells me I am an idiot.
Can anyone help? Please!
Thank you as always….
I have three columns
Desired_Presentation (col J) | Award (col K) | SUSP_Date
Desired presentation will be blank or will contain a date.
Award has a dropdown menu with three options LOM, MSM, and FLCROSS
SUSP_Date (col L) should have a formula that will provide a message or a date depending on what is entered in columns J and K.
If J is blank and K is LOM, L will read 120 days from desired presentation
If J has a date and K is LOM, L will have a date 120 days minus date in J
If J is blank and K is MSM, L will read 60 days from desired presentation date
If J has a date and K is MSM, L will have a date 60 days minus date in J
If J is blank and K is FLCROSS, L will read 60 days from desired presentation date
If J has a date and K is FLCROSS, L will have a date 60 days minus date in J
I came up with this:
=IF (AND (K2="LOM", J2=""),"120 Days Before Presentation”, IF (AND (K2<>"LOM", J2=""),"60 Days Before Presentation",""))
But does not do all I want it to do and when I try to add ifs well it just tells me I am an idiot.
Can anyone help? Please!
Thank you as always….