Hey there, I’ve been trying to work on a formula (in my mind I can do it in bash) but stumbling a bit here. What I’m trying to achieve is based on a specific previous select is to auto populate (initial value) remaining questions based on the the previous row matching cells. I would like to add some validation or condition and I think this is where I’m getting hung up on.
Option 1 (just to get it working)
Based on a pre qualifying questions input, if the previous row has a matching qualifying answer, pre-populate with existing rows information. if it doesn’t match then just leave blank.
Option 2 (get it working with style
)
Similar to above.. Based on a pre qualifying questions input, lookup the previous row that has a matching qualifying answer, pre-populate with existing rows information. if it doesn’t match then just leave blank.
The intention is to auto populate (reduce repetitive selection) only if its relevant in the repetitive task. Example would be an inventory system for widgets and gizmos. The first question is “what is it”. if you select widgets and your previous entry was a widget, it would auto populate the selective questions with relevant information. If you selected gizmos you would then have to manually fill in the remaining questions. For Option 2, this is where it would search for you previous matching “what is it” entry and auto populate with that information.
So far I have to get the previous row matching cell..
LOOKUP([_THISROW].[_RowNumber]-1, “Widgets and Gizmos”, “_RowNumber”, “Teeth”)
Having issues with condition wrapper of did you select Widget or Gizmo previous (or search for previous)
Thanks!