I have created a flow and uploaded it to my canvas app. I am trying to set my syntax to only export the rows I select with radio (see picture below), my syntax is currently;
Set(varfilelink,ExporttoExcel2.Run(JSON(Filter(ColObservation1, isSelected = true), JSONFormat.IncludeBinaryData)).filelink); Launch(varfilelink);
I know I need a filter, but it keep throwing an 'Error'. Is there another function I can use?
Solved! Go to Solution.
HI @Cec123 :
You could try:
1\Set the Radio's Items property to
["True"]
2\Filter the data
Filter(TheGallery.AllItems,TheRadio.Selected.Value="True")
Best Regards,
Bof
An Idea is mark item as "selected" when you select it on your gallery (UpdateIf), then you cant use Filter to get only "selected items"
HI @Cec123 :
You could try:
1\Set the Radio's Items property to
["True"]
2\Filter the data
Filter(TheGallery.AllItems,TheRadio.Selected.Value="True")
Best Regards,
Bof
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
User | Count |
---|---|
199 | |
71 | |
49 | |
42 | |
30 |
User | Count |
---|---|
263 | |
122 | |
92 | |
87 | |
85 |