Greetings,
i have an inventory powerapp linked to a form which the data source of is a sharepoint online list. what i'm trying to achieve is that based on a choice field selection, a text field must show or hide.
_____________________________
Brief explanation:
what i need to achieve is that when the choices Node, Server, or Storage are selected from the drop down in the powerapp, the management IP text field should appear. However when UPS, Chasis, or Patch Panel are selected, the management IP text field should be hidden.
Note that:
_______________________________________________________________________
If (
DataCardValue10.Selected.Value = "Nodes" || "Server" || "Network Switch" || "Storage" ||"Appliance" || "SAN Switch" || "Chasis",
Set(
showMgmtIP,
true
),
Set(
showMgmtIP,
false
)
)
_______________________________________________________________
I was successful when i treid to achieve this based on a single choice. for example, if i want management IP to show only if node is seletected, i used the code below and i was successful:
If (
DataCardValue10.Selected.Value = "Nodes" ,
Set(
showMgmtIP,
true
),
Set(
showMgmtIP,
false
)
)
____________________________________________________________
I need assistance ASAP!!!
Solved! Go to Solution.
Hi @Hasankmurad
If ( DataCardValue10.Selected.Value in ["Nodes", "Server","Network Switch","Storage","Appliance","SAN Switch","Chasis"], Set( showMgmtIP, true ), Set( showMgmtIP, false ) )Hope this Helps!
Hi @Hasankmurad
If ( DataCardValue10.Selected.Value in ["Nodes", "Server","Network Switch","Storage","Appliance","SAN Switch","Chasis"], Set( showMgmtIP, true ), Set( showMgmtIP, false ) )Hope this Helps!
For some reason, I am not able to select anything from the drop down list. once this code was applied, the items in the list seems to have disappeared.. would appreciate your assistances
Stay up tp date on the latest blogs and activities in the community News & Announcements.
Mark your calendars and join us for the next Power Apps Community Call on January 20th, 8a PST
Dive into the Power Platform stack with hands-on sessions and labs, virtually delivered to you by experts and community leaders.
User | Count |
---|---|
198 | |
171 | |
60 | |
32 | |
32 |
User | Count |
---|---|
333 | |
271 | |
103 | |
71 | |
56 |