Filtering a Reference Qualifier

jack ashman
Tera Contributor

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;

 

LeaverAsset.png


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

1 ACCEPTED SOLUTION

Jaspal Singh
Mega Patron
Mega Patron

Try using below

javascript:'assigned_to=' + current.variables.leaver_name+'^display_nameLIKEdell';

View solution in original post

3 REPLIES 3

Jaspal Singh
Mega Patron
Mega Patron

Try using below

javascript:'assigned_to=' + current.variables.leaver_name+'^display_nameLIKEdell';

Thank you, that's cracked it straight away

piyushsain
Tera Guru
Tera Guru

Hi @jack ashman ,

Please use 

'assigned_to=' + current.variables.leaver_name+'^display_nameLIKEdell'

If my answer has helped with your question, please mark my answer as accepted solution and give a thumb up.
Regards,
Piyush Sain