Restrict choice if NONE selected

Hi all,

I have an enumlist allowing multiple colour choices with the following options:

  • Green
  • Blue
  • Orange
  • Yellow
  • Purple
  • None

If you select 1 or more colours it is fine however:

Is there a way to restrict or show a valid_if error when:

None + any other option is chosen? eg. None, Purple

I want to make sure that when the user chooses NONE, they dont accidentally match with a colour.

thanks in advance

Solved Solved
0 7 485
1 ACCEPTED SOLUTION

@Jethro

IF(
	COUNT(SPLIT([_THIS],",")) > 1,
	NOT(
		IN(
			"None",
			[_THIS]
		)
	),
	TRUE
)

View solution in original post

7 REPLIES 7
Top Labels in this Space