Hi, I'm trying to add a boolean field's label only to a form so when the value is marked true (on a different, related form), it shows up as the field label itself, not just "true".
That may be a bit confusing... here's the specifics:
We have boolean userfields on our Create Requisition screen to indicate what days of the week someone's schedule will be (Monday, Tuesday, Wednesday, etc. etc.). The hiring manager checks each box next to the days the person will work so the recruiter knows the schedule.
We want to add these to the Job Posting Template so that the work days show up automatically in the posting text and the recruiter won't have to manually type them in. But, when I add them to the posting, just the value of the boolean (true/false) shows up.
Even better would be a way to only show it if it's marked true, but if not that's okay.
In the posting text I'm doing:
Work Days: {lpl:RushMonday}, {lpl:RushTuesday}, {lpl:RushWednesday}.... (etc. etc.)
Which just returns:
Work Days: true, false, true, false....
I imagine I can use a derived field to pull in text if the original boolean field is true, but I'm getting stuck on the syntax. Something like: return ("Monday" when RushMonday = 1)...?