I have 6 columns which all depend on the previous column in order to not be blank.
Criteria:
col1 is never blank
col2 through col6 can only populated if the previous field is not blank, but can also be blank.
an example scenario would be this:
col1 uses regex to populate a value
col2 also uses a regex to pick a value (but can also be blank 2% of the time)
col3 checks if col2 is blank, if not uses regex to pick value, but can be blank 4% of the time.
this continues through col6 and probability of the cell being blank increases with each step.
I’ve tried to use a formula but could not get it to work the right way.
if ('col2').nil? then 'blank' else 'not blank' end
Thanks in advance for your help, and please let me know if you need anymore information!