Hi All!
Firstly "thank you to anyone who helps"
it's possible an audio will be played when the status of sharepoint column changes
I have a sharepoint list with a status column and I neede taht when the status is "finished", it's plays an audio in the app
Cheers
Solved! Go to Solution.
Hi @DanielGT-89 ,
Do you create a custom form app in your SP List or standalone canvas app based on your SP List?
Firstly, please upload your sound file into your canvas app through the "Media" feature. Then Add a Audio control within your Edit form screen, set the Media property of this Audio control to the previous uploaded sound file.
1) If you create a custom form app in your SP List, please set the OnSuccess property of SharePointForm1 to following:
If(
SharePointForm1.Status.Value = "Finished",
Set(IsStart, false);Set(IsStart, true)
)
set the Start property of the Audio control to following:
IsStart
2. If you created a standalone canvas app based on your SP List:
set the OnSuccess property of EditForm1 to following:
If(
EditForm1.Status.Value = "Finished",
Set(IsStart, false);Set(IsStart, true)
)
set the Start property of the Audio control to following:
IsStart
Note: I assume that the Status column is a Choice type column in your SP List.
Please take a try with above solution, then check if the issue is solved.
Best regards,
HI @DanielGT-89 ,
Yes - with the PowerApps Audio Control
Here is the reference guide to it.
You simply
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi @DanielGT-89 ,
Do you create a custom form app in your SP List or standalone canvas app based on your SP List?
Firstly, please upload your sound file into your canvas app through the "Media" feature. Then Add a Audio control within your Edit form screen, set the Media property of this Audio control to the previous uploaded sound file.
1) If you create a custom form app in your SP List, please set the OnSuccess property of SharePointForm1 to following:
If(
SharePointForm1.Status.Value = "Finished",
Set(IsStart, false);Set(IsStart, true)
)
set the Start property of the Audio control to following:
IsStart
2. If you created a standalone canvas app based on your SP List:
set the OnSuccess property of EditForm1 to following:
If(
EditForm1.Status.Value = "Finished",
Set(IsStart, false);Set(IsStart, true)
)
set the Start property of the Audio control to following:
IsStart
Note: I assume that the Status column is a Choice type column in your SP List.
Please take a try with above solution, then check if the issue is solved.
Best regards,
Stay up tp date on the latest blogs and activities in the community News & Announcements.
Mark your calendars and join us for the next Power Apps Community Call on January 20th, 8a PST
Dive into the Power Platform stack with hands-on sessions and labs, virtually delivered to you by experts and community leaders.
User | Count |
---|---|
206 | |
187 | |
70 | |
37 | |
34 |
User | Count |
---|---|
350 | |
277 | |
121 | |
78 | |
59 |