Sign in to join the conversation:
I'm trying to make this work but I keep getting errors. Help!I
IF([Document Needed]1, =BO, THEN [Date Initiated]1+30), IF ([Document Needed]1,=LOC, THEN [Date Initiated]1+10)
Thank you,
Kelly
=IF([Document Needed]1, ="BO", [Date Initiated]1+30), IF([Document Needed]1,="LOC", [Date Initiated]1+10))
Try that one. You needed to put your criteria in Quotes and remove the words "Then" from your formula. The comma functions as a THEN.
Thank you so much for the fast response. It still sends me an error message.
Maybe this screen shot will help?
Thanks,
What do you want the formula to give you if nothing is in that first box? Try this which will give you a blank cell. But you may want some due date there...
=IF([Document Needed]1, ="BO", [Date Initiated]1+30), IF([Document Needed]1,="LOC", [Date Initiated]1+10, ""))
Mike,
It looks like you may have fingered in an extra closing parenthesis between the two IF's
vs.
=IF([Document Needed]1, ="BO", [Date Initiated]1+30, IF([Document Needed]1,="LOC", [Date Initiated]1+10, ""))
Thank you both for the help. I think we are getting closer as now it says #incorrect argument set. I moved it down a line to a real data line in hopes that would clear up the blank cell question. Here is a screen shot now.
Hi,
You have comma signs after Document Needed2 that shouldn't be there.
Did that solve it?
Have a fantastic weekend!
Best,
Andrée Starå
Workflow Consultant @ Get Done Consulting
No, that didn't help. That gave me a column error. Thank you for trying!
Yep. In both instances. Good catch. Removing those should clear things up.
Are both the Date Initiated column and the column you are typing the formula into formatted as date type columns?
Okay, I'm so confused now. This works -
=IF([Document Needed]2 = "BO", [Date Initiated]2 + 30)
and this works -
=IF([Document Needed]2 = "LOC", [Date Initiated]2 + 10)
But when I try to put them together, they don't -
=IF([Document Needed]2 = "LOC", [Date Initiated]2 + 10), ([Document Needed]2 = "BO", [Date Initiated]2 + 30))
You have an extra parenthesis and are missing an IF.
=IF([Document Needed]2 = "LOC", [Date Initiated]2 + 10, IF([Document Needed]2 = "BO", [Date Initiated]2 + 30))
Use this.
Yippy!! Thank you all for the help! Great chance for me to learn more.
Have a great weekend!
Happy to help!
Andrée
Glad to help. Thanks all for jumping in to support. Three heads are better than one.
Sincerely,
Head number 3
*IDs have been omited for privacy but there are values in the column I need to bring in the Week # values from the Master Tracker - 2026 sheet into the Week-Over-Week Modified sheet. The group and APC ID need to match. There is a potential of duplicate APC values which is why I need the group to be a criteria as well. I…
I have one sheet that is tracking PTO where a user has entered the days off. The form allows them to enter a start and end date for their PTO and enters a single record into the sheet. I have a second sheet that I am looking to pull that data into, but there is only one record per person (column in this sheet where the…
I am trying to get the passenger count per month per year, and I can't seem to get the formula correct. I need to add the number of passengers for each month per year. If anyone could assist me with this, I would greatly appreciate it. Thanks!