Re: How do you patching a Lookup column with values from a text column in the same List?
@MrClick
You can copy the text from Title to CustName in all rows with a single line of code.
UpdateIf(TestList, true, {CustName: Title})
Or you can do it for a specific row if you know the ID number.
Set(varLookupRecord, LookUp(TestList, ID=1));
Patch(TestList, varLookUpRecord, {CustName: varLookUpRecord.Title});
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."