Hey everyone,
This site has been so helpful so far. I have another one for you.
I need to nest if(iserror) statements. I tried to nest it on my own but I am continuously getting errors. I'm banging my head against a wall here.
Here's the rundown.
The original statement is
=IF(ISERROR(SEARCH("xx",AZ$8)),"","Post Date")
That works perfectly, however; I need it to have additional options as well.
If Cell BA$8 has the xx, I want the text to read "Interview".
and
If Cell BB$8 has the xx, I want the text to read "Status"
(Don't worry about anymore than 1 cell having the "xx" at the same time, BUT I do need it to read the additional options! I am having a table that places itself in a certain place when the xx is there but the xx can change. So I just need to figure out how to nest these!)
This is my current failed attempt:
=IF(ISERROR(SEARCH("xx",AZ$8)),"","Post Date",IF(ISERROR(SEARCH("xx",BA$8,1)), "", "Inter view",IF(ISERROR(SEARCH("xx",BB$8,1)), "", "Status")))
Help a poor guy out!
This site has been so helpful so far. I have another one for you.
I need to nest if(iserror) statements. I tried to nest it on my own but I am continuously getting errors. I'm banging my head against a wall here.
Here's the rundown.
The original statement is
=IF(ISERROR(SEARCH("xx",AZ$8)),"","Post Date")
That works perfectly, however; I need it to have additional options as well.
If Cell BA$8 has the xx, I want the text to read "Interview".
and
If Cell BB$8 has the xx, I want the text to read "Status"
(Don't worry about anymore than 1 cell having the "xx" at the same time, BUT I do need it to read the additional options! I am having a table that places itself in a certain place when the xx is there but the xx can change. So I just need to figure out how to nest these!)
This is my current failed attempt:
=IF(ISERROR(SEARCH("xx",AZ$8)),"","Post Date",IF(ISERROR(SEARCH("xx",BA$8,1)), "", "Inter view",IF(ISERROR(SEARCH("xx",BB$8,1)), "", "Status")))
Help a poor guy out!