- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-18-2024 01:21 AM
Morning All,
This may be a stupid question, I've tried to search for other methods but I am still stumped.
I have a Leavers form with a variable that displays the assets assigned to the Leaver, with a simple reference qualifier;
javascript:'assigned_to=' + current.variables.leaver_name;
This is working well however I would like to filter it further to only display the assets containing the word "Dell".
How do I go about amending the above script to achieve this?
Thanks,
Jack
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-18-2024 01:43 AM
Try using below
javascript:'assigned_to=' + current.variables.leaver_name+'^display_nameLIKEdell';

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-18-2024 01:43 AM
Try using below
javascript:'assigned_to=' + current.variables.leaver_name+'^display_nameLIKEdell';
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-18-2024 02:12 AM
Thank you, that's cracked it straight away
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-18-2024 02:46 AM
Hi @jack ashman ,
Please use
'assigned_to=' + current.variables.leaver_name+'^display_nameLIKEdell'
Regards,
Piyush Sain