Hi,
Sorry for the late reply. This has to do with timing. The cascading dropdowns are created before the vLookup sets the field, and therefore the cascading dropdowns will not pick up this value.
If you have configured the cascading dropdowns “manually” (not using DFFS) you can wrap the call to this function in this code:
function vLookupPresetFromUrlDone(fin){
if(fin === "TheFieldInternalNameOfTheFieldYouAreSetting"){
// put the cascading dropdown code here.
}
}
If you are using DFFS, try deferring DFFS (in the Misc tab) to try to let vLookup finish before it triggers.
Hope this helps,
Alexander