Hi everyone,
I'm facing an issue with a lookup field not auto-populating in a Power Pages form, even though the same setup works on another form.
I want to auto-populate a lookup field in a form (let's call it Certifications
) using a query string that passes the ID of a record from another table (let's call it MainTable
):
This works perfectly on another form (TraceabilityForm
), but not on Certifications
, even though both forms share the same logic and lookup setup.
Certifications
table has a lookup column to MainTable
(N:1 relationship).
In the form configuration:
"Set table reference on save" is enabled.
Query string is selected as input.
Parameter name is id
.
"Query string is a primary key" is checked.
The correct logical name of the lookup field is selected.
The record ID passed in the URL exists and is accessible anonymously.
Replicated the lookup field multiple times with the same result.
Double-checked permissions and form mode (Insert).
Compared against the working form where this setup is functional.
In the Certifications
form, the lookup field still shows a search box instead of auto-filling.
Why would the lookup field auto-populate on one form but not another, despite the same setup?
Could this be due to:
Metadata caching?
View setup?
Form/field permissions?
✅ Working:
https://[mysite].powerappsportals.com/TraceabilityForm/?id=VALID_GUID
❌ Not working:
https://[mysite].powerappsportals.com/Certifications/?id=VALID_GUID
Any help would be appreciated 🙏
Happy to share further details if needed.
Thanks in advance!
Thanks a lot for your guidance!
You were spot on regarding the use of JavaScript to handle the URL parameter.
Indeed, I ended up implementing a custom button with a dedicated script to capture the id
from the URL and control the form submission and redirection manually. Without this, as you correctly pointed out, simply having the id
in the URL wasn't enough to populate the lookup field as expected.
Here’s roughly the approach I took:
I added a manual button under the form.
On click, the script captures the id
from the URL.
I force the form submission via JavaScript.
After a short delay to ensure the data is saved, I redirect to the next page while keeping the original id
in the URL to maintain the correct relationship.
It works perfectly now 🎉
Thank you again for your insightful advice! I've marked the post as resolved and gave it a like 😊
Cheers!
WarrenBelz
146,518
Most Valuable Professional
RandyHayes
76,287
Super User 2024 Season 1
Pstork1
65,692
Most Valuable Professional