User Filters

Certified Associate Developer

I have two user filters in record, is to possible to hide and show second user filter based on value selected in 1st user filter.

For example in the below image I have two filters named 1) FEEDBACK and 2) APPOINTMENT DATE, 

FEEDBACK filter had 2 values Good and Neutral, Is it possible to display the Second filter(APPOINTMENT DATE) only when we choose Good in the FEEDBACK filter?

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Senior Developer
    in reply to Konduru Chaitanya

     : Let me correct my sentence here:  

    As per my understanding you cannot have this functionality in record filters. You can use interface rules and expressions to conditionally show or hide the second filter based on the value selected in the first filter.

    for example : 

    local!showAppointmentDate: IF(
    local!feedbackFilter= "Good",
    true,
    false
    )

    All I am saying is instead of going with record userfilter approach , We can go with interface rule/expression/local variable approach

Children
No Data