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
It happened suddenly. It was working last week. I'm using Index Collect to pull a contact as cross sheet reference. But today, I did not see that working well. Usually it has circle beside my name, suddenly it vanishes, and it just contains text. I'm using those other columns to be sent notification, and it doesn't work…
Hi, I am trying to create a sheet from data that is originally held in .csv files. My goal is to make it so that transferring the data to my sheet should be as simple as just copy and paste. My issue is that two of the fields that I need to copy over are reported in scientific notation (1.3E+004) and I am trying to figure…
I searched the community and did not see a formula that calculated Quarter based on a Start and a Finish date while also accounting for cases where the year for the Start and Finish date differ. The formula below handles that. A few notes … It assumes that Finish is always >= Start. The entire formula is wrapped with…