i have two lists in sharepoint positions list and daily activity list , now i have selected a particular postion which is in daily activity list which uses positions list lookup of title column , so while selecting a particular record i want to get defaults value and other text to be filled by user . now at time of patching i want to patch all the defaults value of the selected position and the other details with it in the daily activity list.
so title is patching but now i have hr column in daily activity list which uses created by lookup and the date which also uses from position lookup , i am able to fetch it but how to patch it?
Patch(
'Daily Activity',
LookUp('Daily Activity',ID=selectedDRecordID),
{
Title:Text(LookUp(Positions, ID = v_ditem.Position.Id).Title),
'Resumes Reviewed':Value(txtEResumesReviewed.Text),
'Calls Done':Value(txtECallsDone.Text),
'Resume Uploaded':Value(txtEResumeUploaded.Text),
'Interviews Schedueld':Value(txtEInterviewsSchedueld.Text),
Archived:Value(txtEArchived.Text)
}
);