Hi @ck25415,
Could you please share more details about the formula within the OnSelect property of the Non-working button?
I have made a test on my side and don't have the issue that you mentioned. The screenshot as below:
The OnSelect proprty of the Launch button set to following formula:
ClearCollect(Collection2,Filter('20180718_case11',Status.Value in Collection1.Value));
Launch("https://web.powerapps.com/webplayer/iframeapp?source=iframe
&appId=/providers/Microsoft.PowerApps/apps/xxxx0e22-6519-xx6f-90fd-66a0d31exxxx")
Note: The Filter function within above formula could not be delegated.
The GIF image as below:
Please check if you have allowed Pop-ups within your browsers. In other words, please take a try to enable/turn on the Pop-up option within your browser.
More details about enable/turn on (Allow) the Pop-up option, please check the following article:
https://support.microsoft.com/en-us/help/17479/windows-internet-explorer-11-change-security-privacy-settings
In addition, you could also take a try to put the formula of Button control (Launch button) into a Concurrent function, then check if the issue is solved. I have made a test, please take a try with the following formula:
Concurrent(
ClearCollect(Collection2,Filter('20180718_case11',Status.Value in Collection1.Value)),
Launch("https://web.powerapps.com/webplayer/iframeapp?source=iframe
&appId=/providers/Microsoft.PowerApps/apps/xxxx0e22-6519-xx6f-90fd-66a0d31exxxx")
)
More details about the Concurrent function, please check the following blog:
https://powerapps.microsoft.com/en-us/blog/enjoy-faster-startup-times-with-the-new-concurrent-function/
Best regards,
Kris