Hi everyone, I am trying to filter table rows that contain a specific text using a flow variable.

I am attaching a Dummy Workflow
Thank you
Row filter Variable.knwf (16.7 KB)
Hi everyone, I am trying to filter table rows that contain a specific text using a flow variable.

I am attaching a Dummy Workflow
Thank you
Row filter Variable.knwf (16.7 KB)
Things I noticed:
$Path$ LIKE $${SYYYYMMDD}$$ => TRUE but there’s no column called Path. The error message in the console tells you this.LIKE without any wildcards in the right side expression means that you’re asking for an exact match.These are both easy to address.
For 1, use the appropriate column name in your rule.
For 2, add wildcards to your string using something like this: join("*",replace(substr($${STODAYDATE}$$,0,10),"-",""),"*")

Here’s the filtered result:

Hi @elsamuel thank you I worked fine
Attaching the workflow for future reference
Row filter Variable.knwf (18.2 KB)
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.