
Announcements
Hi,
User will click on button from the SharePoint list view, it will lunch the Power Automate Flow. After it done, it will pop up a window to show what flow is run and done. Is possible to remove this pop up windows or change the wording?
Thanks!
@usaman45 you can't remove the panel but if you are using a JSON-formatted button in your list you can change the flow ID, txtContent line (button text), header text and run button text:
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
"elmType": "button",
"txtContent": "Change Created By to name of page contact",
"customRowAction": {
"action": "executeFlow",
"actionParams": "='{\"id\":\"50097cde-b800-4c6c-ade9-95be7574f4e5\", \"headerText\":\" ' + [$Title] + '\",\"runFlowButtonText\":\"Go\"}'"
},
"style": {
"background-color": "#cf000f",
"color": "white",
"border-radius": "10px"
}
}
Rob
Los Gallardos
If I've answered your question or solved your problem, please mark this question as answered. This helps others who have the same question find a solution quickly via the forum search. If you liked my response, please consider giving it a thumbs up. Thanks.