Hi all,
Currently building an app where users can request and approve company travel items.
I've built the UI of the "overview" screen as a timeline of travel events (flights, etc). Wondering whether anyone out there might know how to detect whether a given item is the First or Last one in a gallery? Would be useful in showing or hiding aspects of the UI to dictate whether the timeline ends or starts from a particular item.
Cheers
try this
If(ThisItem.ID=First(myCollection).ID,DisplayMode.Edit,DisplayMode.View)
Hi @Meneghino
I tried your suggestion. But getting an error which says can't compare record=record type.
My requirement is to enable a control in just first row of gallery & disable for rest of the rows.
So i am using If(ThisItem=First(myCollection),DisplayMode.Edit,DisplayMode.View) on display mode property of that particular control inside gallery.
Any more suggestions will help.
Thanks.
@Anonymous hi were you able to find a solution?
I am trying to apply this idea inside a gallery, on the visible property of an icon. I can't seem to get the syntax right, I'm getting "invalid argument type." Inside the gallery it would be ThisItem=Last(whatever)?
If(ThisItem=Last(Filter(Datasource,Field=value,Field2=Value2)),true,false)
I'm pretty sure "ThisItem" is the single record within the gallery - if I start typing
If(ThisItem.
I see the fields of the table in question in the auto fill area
Hi @Anonymous
You can use the First and Last functions. If outside the gallery then you can use the AllItems property of the gallery.
For example: If(Gallery1.Selected = First(Gallery1.AllItems), XXX, YYY)
If inside the gallery (i.e. for a control in the gallery template) then I think that you cannot use AllItems, so just use First or Last with the same expression as the Items property of your gallery.
Please provide specific needs (incl. Items property) if the above is not clear enough.
WarrenBelz
146,635
Most Valuable Professional
RandyHayes
76,287
Super User 2024 Season 1
Pstork1
65,997
Most Valuable Professional