Data Entry Wizard conditional link to records

Anubha,

It looks like the issue might still have to do with passing the account record id to the page. In the row action on the account table, the url must end with {{name of id field}}, and it is case sensitive. That means that id won’t work, but Id should work. So the end of your url would look like DataEntry&id={{Id}}

On the corresponding page that it redirects to you can see that I set a condition on account to look to whatever I named the parameter I passed in. In this case, id.

It might be helpful to check this first to make sure that you’re only getting one account record. Then once you only get one account the condition on contact should hold and you should not get all the contact records (your condition on contact looked good so I don’t think you should have to change it). One last thing to do that might help is checking that you have the Id field in all of your models, like how you can see my Id field on my account model in the top screenshot.

Thanks!
Amy