Hi @anilrambhajan ,
I assume you are navigating to this edit form from a main screen with a gallery. OnSelect of the Gallery you will see Select(Parent) and in Item of the Edit form it may be Gallery.Selected
To solve your issue, you could try:
1\ OnSelect of the Gallery:
Set(varID, ThisItem.ID)
2\ OnSelect of the save button:
SubmitForm(FormEditRequest)
3\ OnSuccess of the FormEditRequest form:
Set(varID, FormEditRequest.LastSubmit.ID);
ResetForm(FormEditRequest)
4\ Item of the FormEditRequest form:
LookUp(SPlist, ID = varID)
Hope this helps.
Best regards,
Community Support Team _ Jeffer Ni
If this post helps, then please consider Accept it as the solution to help the other members find it.