Need Clarification
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2025 03:38 AM
I have a requirement where in i need to trigger tasks based on multi row variable set, if there are rows entered, then a task should trigger else it should not how can i do this in workflow?
Please help
thanks
5 REPLIES 5
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
a week ago
If MRVS has rows (length > 0), create the task; otherwise, do nothing.
Workflow: Use a Run Script activity to check
current.variables.<MRVS_name>.length.Flow Designer: Use an If condition:
multi_row_var_set.count > 0→ create task.

