Skip to main content
Solved

Get an status triggered by different fields

  • March 15, 2023
  • 2 replies
  • 17 views

Forum|alt.badge.img+3

Hi Community, 

I have 5 fields (checkbox) that can be selected or not, I need to assign a status triggered by these fields, if any field of the 5 is selected then a status will be set and if no one is selected It will assign a different status.

 

Thanks for the help.

Best answer by TheTimeSavingCo

Try something like:

IF( OR( {Route 1 Under Testing}, {Route 2 Under Testing} ), "Testing" )

Link to base

2 replies

TheTimeSavingCo
Forum|alt.badge.img+31
  • Brainy
  • 6414 replies
  • Answer
  • March 15, 2023

Try something like:

IF( OR( {Route 1 Under Testing}, {Route 2 Under Testing} ), "Testing" )

Link to base


Forum|alt.badge.img+3
  • Author
  • New Participant
  • 1 reply
  • March 15, 2023

Try something like:

IF( OR( {Route 1 Under Testing}, {Route 2 Under Testing} ), "Testing" )

Link to base


@TheTimeSavingCo  Amazing. 

Thanks a lot.