I'm using the new modern control to update my app.
How can I navigate between tabs using an Arrow icon for example?
Thank you very much, I hope you can understand and help me with my problem.
Hi @NZ0090 ,
I am learning Power apps and I have to do the same think using forward icon and backward icon to switch between containers, could please help me with this?
"Thank you. This solution works.
This is my progress so far. I tried to solve the problem where "the selected tab only appears in the last tab" but unfortunately I couldn't fix it.". You can help me with this?
"Thank you. This solution works.
This is my progress so far. I tried to solve the problem where "the selected tab only appears in the last tab" but unfortunately I couldn't fix it.". You can help me with this?
Sorry, missed the bit about modern control.
I did some testing with a collection:
Collect(
TestTabName,
{Tab: "Tab A"},
{Tab: "Tab B"},
{Tab: "Tab C"},
{Tab: "Tab D"}
)
On the Next arrow:
If(
CurrTab="Tab A", Set(CurrTab, "Tab B"),
CurrTab="Tab B", Set(CurrTab, "Tab C"),
CurrTab="Tab C", Set(CurrTab, "Tab D")
)
On the Prev arrow:
If(
CurrTab="Tab B", Set(CurrTab, "Tab A"),
CurrTab="Tab C", Set(CurrTab, "Tab B"),
CurrTab="Tab D", Set(CurrTab, "Tab C")
)
On the Items property of the TabList:
If(
IsBlank(CurrTab),
Distinct(TestTabName, Tab),
Distinct(Filter(TestTabName, Tab<>CurrTab), Tab)
)
On the OnSelect property of the TabList:
Set(CurrTab, Self.Selected.Value)
On the DefaultSelectedItems property of the TabList:
[CurrTab]
The only problem is that the selected tab will show up only on the last tab. This is my first time playing around with modern control so maybe there's a more simplified version somewhere out there.
I'm using the modern controls, specifically the Tab List, which allows me to navigate between tabs instead of pages. I can't use the navigation function (ScreenName, Transition) because I don't have ScreenName. I have tabName but the funtion dont work with this parameter
WarrenBelz
637
Most Valuable Professional
stampcoin
570
Super User 2025 Season 2
Power Apps 1919
473