Comments on: How to Hide Fields Based on Condition in Power Apps [Dropdown] https://www.spguides.com/show-hide-fields-based-on-dropdown-selection-powerapps/ Learn SharePoint, Office 365, Nintex, PowerApps, PowerBI etc, SharePoint training and video courses Tue, 21 May 2024 21:31:20 +0000 hourly 1 https://wordpress.org/?v=6.6.2 By: Lina Delgado https://www.spguides.com/show-hide-fields-based-on-dropdown-selection-powerapps/#comments/1080 Tue, 21 May 2024 21:31:20 +0000 https://www.spguides.com/?p=21836#comment-1080 Hi! I don’t have any errors, but it doesn’t change or do anything when I select from the dropdown menu. The drop-down I have says yes or no, if you select yes you can see the next question, but if you select no, you will not be able to see it. This is what I use on the visible option:

Visible= If(ThisItem.’Manager Type’.Value =”Yes”,
false,
true
)

]]>
By: mcos https://www.spguides.com/show-hide-fields-based-on-dropdown-selection-powerapps/#comments/993 Thu, 27 Apr 2023 18:20:42 +0000 https://www.spguides.com/?p=21836#comment-993 what about multi select combo box?
ex: I have a combo box with 6 pie flavor options and Apple Pie and Blueberry Pie are both selected.

how to: Make Apple Pie Size text field and Blueberry Pie Size text field visible. If only Blueberry Pie is selected in combo box, hide Apple Pie Size text field and only show Blueberry Pie Size.

]]>
By: Erdem https://www.spguides.com/show-hide-fields-based-on-dropdown-selection-powerapps/#comments/705 Wed, 15 Jun 2022 09:19:42 +0000 https://www.spguides.com/?p=21836#comment-705 In reply to Diosdado Bele Mollings.

You can use it like this:

If(DataCardValue26.Selected.Value = “FPSO-Aseng”, true, false) Or (DataCardValue26.Selected.Value = “Alen Platform”) Or (DataCardValue26.Selected.Value = “Pico Basile”) etc.

You Seperate it with the Or function ( || can also be used it is the same as Or)

]]>
By: Diosdado Bele Mollings https://www.spguides.com/show-hide-fields-based-on-dropdown-selection-powerapps/#comments/589 Mon, 27 Dec 2021 18:35:18 +0000 https://www.spguides.com/?p=21836#comment-589 If(DataCardValue26.Selected.Value = “FPSO-Aseng”, “Alen Platform”, “Pico Basile”, “Luba Shorebase”, true)

Only the first information that is working, all the other information does not work. can someone help me? I would like the

]]>
By: hussity https://www.spguides.com/show-hide-fields-based-on-dropdown-selection-powerapps/#comments/207 Thu, 04 Mar 2021 02:00:46 +0000 https://www.spguides.com/?p=21836#comment-207 Greeting Bijay Kumar –
I have tried your solution and for some reason I still get an error and the fields are invisible (for both Yes and No)

]]>