- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I need some help! I am trying to make an IF THEN formula and everything looks right, but I keep getting the Bad IF-Statement format error. I think the problem is with the Nested Formula formatting.
I am trying to state the following:
If FinEnd_Side_l is clicked then I want this parameter to report an "L"
If FinEnd_Side_ll is clicked then I want this parameter to report an "R"
If both FinEnd_Side l and FinEnd_Side ll are clicked I want this parameter to report a "B"
If neither are clicked this parameter can remain empty.
Here is the formula I have written which gives the error:
if((and(FinEnd_Side_l, (not(FinEnd_Side_ll)))), "L", " ", if((and(FinEnd_Side_ll, (not(FinEnd_Side_l)))), "R", " ", if((and(FinEnd_Side_ll, FinEnd_Side_l)), "B", " ", if((not(FinEnd_Side_ll, FinEnd_Side_l)), " ", " " ))))
Can anyone help?
Thanks!
Solved! Go to Solution.