I am just getting into using the Dataverse and i have a table that has a choice column called expense type.
I want to have a field only show when the choice field is Travel-Day Trips,
I am using this code below which I thought would work,
If(DataCardValue4.Selected.Value = "Travel-Day Trips",true, false)
but I am getting the error.
Any suggestions on how to fix this?
Solved! Go to Solution.
Try this:
If(Text(DataCardValue4.Selected.Value) = "Travel-Day Trips",true, false)
Nit sure if it will work, though..
If you need additional help please tag me in your reply and please like my reply.
If my reply provided you with a solution, pleased mark it as a solution ✔️!
Best regards,
Gonçalo Nogueira
Check my LinkedIn!
Check my User Group (pt-PT)!
Last Post on Community
My website!
Try this:
If(Text(DataCardValue4.Selected.Value) = "Travel-Day Trips",true, false)
Nit sure if it will work, though..
If you need additional help please tag me in your reply and please like my reply.
If my reply provided you with a solution, pleased mark it as a solution ✔️!
Best regards,
Gonçalo Nogueira
Check my LinkedIn!
Check my User Group (pt-PT)!
Last Post on Community
My website!
The problem is that the value of a choice column in Dataverse isn't actually the text that is displayed. Option columns store their choices in a central location. So you need to use a loopkup to get the value. This article explains.
Power Apps Guide - Dataverse - How to filter Dataverse choice columns - Power Apps Guide - Blog
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
User | Count |
---|---|
195 | |
70 | |
51 | |
41 | |
30 |
User | Count |
---|---|
255 | |
120 | |
97 | |
91 | |
78 |