Hi,
To have vLookup refresh when you change the trigger field you must set up a DFFS rule that triggers on change of the “CRM Number field”, and calls a custom function.
Add the function name “refresh_vLookupColumn” in the “Run these functions / trigger these rules” field of the “on change” rule in your trigger field, and add this to the Custom JS:
function refresh_vLookupColumn(){
spjs.vLookup._init("vLookupTest",false,true);
}
Change “vLookupTest” to match your field name.
Let me kow how this works out.
Alexander