Is it possible to reference Filter Set values to control component rendering?

Hello! I am hoping to display a warning message to users if they select a combination of filter set values that are problematic for the use case. Specifically, we’re using a date field, and want to warn the user to double check their intentions if they select dates that span across two separate years. Does anyone know if it is possible to reference the filter values set by the user to control rendering?

The filter value is available as part of the Model global merge function. So you can grab those values and compare them in UI ONly formula field - and then use that field to drive some conditional rendering.

See the docs here

The merge syntax will look like this: $Model.OpenTasks.conditions.0.value

Thanks Rob - I gave this a go and have it up and working! Always appreciate the guidance!