I am using one radio button named "Summary" and "Facility" So default is summary screen so when I select facility it will navigate to facility screen but selection will blink in facility radio button but again selected will be shown as summary. So when I am in facility screen and when I click on summary radio button it will navigate but same happens as before that summary will blink and facility radio button will be shown as selected.
Code Used:
If(
Dash.Selected.Value="Summary",
Navigate('Coding Dashboard Screen'),
If(Dash.Selected.Value="Facility",
Navigate('Dashboard Screen_1')))
Same used in One more Screen I don't know what's the error can you help me out.
Solved! Go to Solution.
Hi @Abhijith123 ,
Please try
Set the the Dash's
Items
["summary","facility"]
OnChange
If(
dash.Selected.Value = "summary",
Navigate('Coding Dashboard Screen'),
dash.Selected.Value = "facility",
Navigate('Dashboard Screen_1')
);
Reset(Self)
Default
Switch(
Parent.Name,
"Dashboard Screen_1",
"facility",
"Coding Dashboard Screen",
"summary"
)
Best Regards,
Bof
Hi @Abhijith123 m
Please try the below Power FX in Visible property of the Screens.
In Coding Dashboard Screen:
============================
Visible = If(Dash.Selected.Value="Summary",true, false)
In Dashboard Screen_1:
========================
Visible = If(Dash.Selected.Value="Facility", true, false)
Try using tabs instead of Radio Button:
https://www.c-sharpcorner.com/blogs/how-to-create-tabs-in-powerapps
Still its having the same error
Hi @Abhijith123 ,
Please try
Set the the Dash's
Items
["summary","facility"]
OnChange
If(
dash.Selected.Value = "summary",
Navigate('Coding Dashboard Screen'),
dash.Selected.Value = "facility",
Navigate('Dashboard Screen_1')
);
Reset(Self)
Default
Switch(
Parent.Name,
"Dashboard Screen_1",
"facility",
"Coding Dashboard Screen",
"summary"
)
Best Regards,
Bof
User | Count |
---|---|
30 | |
5 | |
5 | |
4 | |
3 |
User | Count |
---|---|
35 | |
16 | |
13 | |
10 | |
9 |