
Announcements
I wonder there has been any progress on passing parameters dynamically into embedded PowerApps in SharePoint page since a similar question was posted back in 2020 in the forum. I have found this post dated 2019 SharePoint - Passing Parameters in Power Apps - Blue Flame Labs (theblueflamelabs.com) mentioning it was not possible , hoping there will be an option now.
Hi @reshmee011 ,
I am not a professional SharePoint developer, but iIt should be possible to use JS code to get the parameter of the current URL and then append it to the src attribute of the iframe.
<script>
let appIframe=document.querySelector("iframe")
let orgsrc=appIframe.src
let urlParameters= window.location.search
appIframe.src=orgSrc+urlParameters
</script>
Also, I think this problem is related to SharePoint development, I suggest you go to the SharePoint forum for help
https://techcommunity.microsoft.com/t5/sharepoint/ct-p/SharePoint
Best Regards,
Bof