Dependency on dropdown value challenge

Hi

Hopefully a simple one. I'm creating a dependency based on a single value from a dropdown list. It's working to only show the field when the value is selected, however, it also shows when the value is blank. We have the dropdown set to default to blank.

isInList($bvdid_status_c,createList("BVDID_Does_Not_Exist",))

Can anyone advise how to ensure the field do not appear when the field is blank?

Best wishes

Lucy

Parents
  • I think the trailing comma inside your createList may be allowing the blank as a valid option :)

    Try changing

    isInList($bvdid_status_c,createList("BVDID_Does_Not_Exist",))

    to

    isInList($bvdid_status_c,createList("BVDID_Does_Not_Exist"))


    FrancescaS

Reply
  • I think the trailing comma inside your createList may be allowing the blank as a valid option :)

    Try changing

    isInList($bvdid_status_c,createList("BVDID_Does_Not_Exist",))

    to

    isInList($bvdid_status_c,createList("BVDID_Does_Not_Exist"))


    FrancescaS

Children
No Data