I've got a gallery that has its items influenced by selections on the outside. I've got a text label that holds a value that takes a weight from each record in the gallery and calculates it. However, when the gallery hits over 100 it doesn't calculate the information on the > 100 records. When scrolled, it collects that info.
I'm trying to add some jump to bottom/top buttons. I'm using the following formula in the Default property of the gallery:
If(
hvtTicketScroll = false,
Last(galHVTTicketList.AllItems),
First(galHVTTicketList.AllItems)
)
And then inside each button is
UpdateContext({hvtTicketScroll : false})or
UpdateContext({hvtTicketScroll : true})This works fine to scroll to the top and bottom, however none of the records inside of the gallery work for being selected and sending that information to an edit form. It defaults to either the first or last record. I tried adding a
Blank()to the If() statements, but it doesn't look like you can do that inside of the default gallery property, along with the Last/First commands.
Thanks 🙂

Report
All responses (
Answers (