I have a canvas app with a Form generated from a SharePoint List. I am trying to generate a link that can be sent in an email to come back and edit the form at a later point. I have populated the Item property on the Form on the edit screen with the following:
LookUp('List Name',ID=Value(Param("applID")))
The LookUp in the Item property is not working, even though it appears to recognize that it is a record.

The parameter applID is passed in a URL linking to the edit screen.
<URL>?ScreenName=Edit&applID=7
The Lookup code above is not working when in the Item property on the form. However, it does pull the information if I replace the ThisItem. in the Default property on the Data Cards. Unfortunately, even if I populate the ID property from SharePoint by replacing ThisItem., it still creates a new record on submission.
Using ThisItem. will not populate data.
Using the Lookup will populate the information.
Any idea what I am doing wrong in my formula for the Item property on the form?