Conditional Field Type based on user?

For some users I need an Enum to limit to one selection. For others I need an EnumList to allow multi-selects. Based on the same data column.

Is there a way to do this?

1 3 110
3 REPLIES 3

Not sure if this helps, but hereโ€™s one I did this week where you can have โ€œCustomerโ€ on its own, or any number & combination of the others

OR(
	AND(
		IN("Customer",[Type]),
		COUNT([Type])=1
	),	
	NOT(IN("Customer",[Type]))
)

On rereading the requirement, I think @1minManager โ€™ suggestion is in the correct direction. I had slightly misunderstood the requirement so I deleted my suggestion. I think the requirement is to restrict to โ€œany oneโ€ selection in the enumlist. I probably misread the restriction to โ€œone specific valueโ€.

Steve
Platinum 4
Platinum 4

Pattern for Valid If:

IF(
  user-allowed-many-choices?,
  LIST(...multiple-items...),
  LIST(one-item)
)

Example:

IF(
  IN("Privileged", Current_User[Type]),
  LIST("Good", "Great!", "Amazing!"),
  LIST("Good")
)
Top Labels in this Space