Hello, I am trying to create a pickerFieldCustom. I was able to make

Hello,

I am trying to create a pickerFieldCustom. I was able to make one that works when selecting a single result, but what is the best practice or implementation of selecting multiple results?

Thanks....

OriginalPostID-114655

OriginalPostID-114655

  Discussion posts and replies are publicly visible

Parents
  • If I want to avoid sending it to a rule, how can I do that? This is what I have:

    selectedLabels: if(
    or(
    rule!APN_isBlank(
    ri!value
    ),
    count(
    ri!value
    ) = 0
    ),
    null,
    apply(
    index(
    _,
    rule!Q_getEmployeeForPickerByID(
    ri!value
    ).Name_Email_Division,
    rule!Q_getEmployeeForPickerByID(
    ri!value
    ).UserID,
    ri!value
    )
    ),
    value: ri!value,
    saveInto: {
    ri!saveValueInto
    }
    )
Reply
  • If I want to avoid sending it to a rule, how can I do that? This is what I have:

    selectedLabels: if(
    or(
    rule!APN_isBlank(
    ri!value
    ),
    count(
    ri!value
    ) = 0
    ),
    null,
    apply(
    index(
    _,
    rule!Q_getEmployeeForPickerByID(
    ri!value
    ).Name_Email_Division,
    rule!Q_getEmployeeForPickerByID(
    ri!value
    ).UserID,
    ri!value
    )
    ),
    value: ri!value,
    saveInto: {
    ri!saveValueInto
    }
    )
Children
No Data