I have a flow screen where I want to make a section only visible if the quick choice value does not start with a string. Other fields react to the values chosen, but not the visibility.
editWOfaultCode is the screen quick choice field.
My formula is boolean, BEGINS( {!editWOfaultCode.value}, "Part Needed for" ).
Then the field's visibility checks that the above formula is false before making it visible.
However, the field remains visible no matter what I do. I can create a checkbox field on the screen, set it to this boolean formula's value, and then set the visibility based on this checkbox field. However, then I have an extra field on the screen and making it not visible renders it useless.
Any ideas? I'm trying to avoid navigating to another screen.
@Solo Admins@Salesforce Flow Automation@MVP Office Hours (US)
Forum Ambassador Eric Smith (Retired)
Reactive formulas do not apply to visibility on a Flow screen. To get around this I've created a reactive screen component whose output can be used for conditional visibility. Just pass your formula in as input and use the output for the conditional visibility setting for the section. It is included in the FlowScreenComponentsBasePack. See this video for a sample use case.