I have the following table, what I am trying to do is to automatically generate the column D (highlighted in yellow below).
If the previous cell in column B (starting B2) has a bracket "(" then I want it to be equal
=IF(ISNUMBER(SEARCH("(";B1));E2;D1) [this equation is in D2]
the trick is as seen in the example below B3 till B17 have no "(" so its equal the previous value which is the above D, but in B18 it sets to E18, however I want to be E3 and so on till the end. Any help?