
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2023 12:42 PM
I have several checkboxes on a catalog form.
When I submit the form, I want to be able to see if the checkbox has been checked in the workflow. I was under the impression that I just need to check to see if current.variables.chkboxname == 'true' would work.
What I am getting is "undefined". I checked to make sure I am pulling all of the variables in the catalog task. What am I missing?
Thank you, Charles
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2023 01:28 PM
Hi,
In your workflow, you can use an if activity and just use the builder to check variable values without scripting and then use the yes or no path from the if activity to go do whatever it is you need to do.
Anyways, for your issue here, your field name is not spelled correctly, per your screenshot it's chbx_6month not chbx_6mo so you have a typo.
Please consider marking my reply as Helpful and/or Accept Solution, if applicable. Thanks!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2023 01:28 PM
Hi,
In your workflow, you can use an if activity and just use the builder to check variable values without scripting and then use the yes or no path from the if activity to go do whatever it is you need to do.
Anyways, for your issue here, your field name is not spelled correctly, per your screenshot it's chbx_6month not chbx_6mo so you have a typo.
Please consider marking my reply as Helpful and/or Accept Solution, if applicable. Thanks!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2023 01:29 PM
Just noticed it was 6month instead of 6mo when I saw your comment. Thank you Allen.