I tired many method can anyone help me to set the title of table dynamically in the Power Apps without hardcoding
Table(
{
title: "Home", \\Here Put the title dynamically without hardcoding
icon: Icon.Home,
showSeparator: true,
Screen: 'Forecast Dashboard' \\\\Here Put the Screen dynamically without hardcoding
}
)
Solved! Go to Solution.
As I have gone through many many methods and finally come to a solution, as the 'Screen' is a control datatype, we can't specify it from anywhere, so it is not possible.
From which list/table/collection you want to set the table.
Table name is "Configuration"
Sorry! your question is not entirely clear.
Have you tried using App.ActiveScreen.Name
The thing is that I already set up a table with the details of a screen and title that I used, so I can change the screen and title of my app anytime I want in the table and it will automatically change in the app also.
As I have gone through many many methods and finally come to a solution, as the 'Screen' is a control datatype, we can't specify it from anywhere, so it is not possible.