Yes, here are the basic steps for a visual alert and there are lots of ways to do this:
- Assign the return value of your file download flow to a context variable: UpdateContext({varFileSuccess: MyFlowName.Run()});
- Create a label with your desired alert message and include a button you'll use to acknowledge the alert
- varFileSuccess.StatusCode should contain the value "200" for a successful run of the flow that created the CSV file, so use it in the Visible property of the new label and button to toggle their visibility with the condition: varFileStatus.StatusCode = "200"
- In the OnSelect property of your new button to acknowledge the alert, put the following code to clear the new variable: UpdateContext({varFileStatus: Blank()})
Hope that helps,
Bryan
_________________________________________________________________________________________
Help the community help more users by choosing to "Accept as Solution" if this post met your needs. If you liked the post and want to show some appreciation, please give it a Thumbs Up.