Forum Discussion
Hide or show field based on another field value
kthayer Okay, I finally found a direct answer in another blog as follows:
If(DataCardValue4_2.Selected.Value = "Update", true, false)
- tcoates88Jun 23, 2021Copper Contributor
kthayer Thanks for linking to that blog. I am trying to use the same pattern for a similar problem, but seem to be hitting a roadblock. I want the "GPA Phase" data card to be visible only if the option "Language Hours" is chosen from the drop down list as the value for the "Type of Activity" data card.
Here's what I'm using:
IF (DataCardValue11_1.Selected.Value = "Language Hours",true,false)
I'm attaching screenshot as well:
- ganeshsanapJun 26, 2021MVP
tcoates88 I don't see any problem with the formula you written in your above reply:
If(DataCardValue11_1.Selected.Value = "Language Hours", true, false)Make sure you are using the correct value ("Language Hours") as given in backend which is case-sensitive. Also, in the screenshot you attached, you are missing closing bracket ")" at the end of formula.
Let me know if this is not working for you or if there is any error, please post the error message here by replying to this message.
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.
- kthayerJun 24, 2021Copper Contributor
tcoates88 , I don't do much support with this form and I'm not a developer. The only thing I wondered is if the "Language Hours" is a problem because it's two words and maybe there's a backend value that puts something between them? Sorry I can't offer much help. Hopefully someone else can chime in who knows what they're talking about. 🙂