Happy Wednesday! Eastern Standard Time. 😁
l' m getting the following message: [ Expected Table value. ] What l' m trying to accomplish, is when the users click on View it will show the default value either "true" or "false" and also set the combox to blank. If true or false haven't been selected.
Working a lot with SQL lately. 🙄
Items property :
["","Yes","No"]
DefaultSelectedItems property :
If(LookUp('[dbo].[FluTrackerDetail]',ThisRecord.Id=Gallery1.Selected.EmployeeId,Accepted),"Yes","No")
Please let me know I explain myself clearly. Thank you in advance!
Solved! Go to Solution.
Hi @oappdev ,
I was tackling the wrong issue I think -try this
If(
LookUp(
'[dbo].[FluTrackerDetail]',
Id=Gallery1.Selected.EmployeeId
).Accepted=1,
{Value:"Yes"},
{Value:"No"}
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi @oappdev ,
Happy Thursday lunchtime in Oz !
Assuming Accepted is a Boolean field, are you trying to do this?
If(
LookUp(
'[dbo].[FluTrackerDetail]',
Id=Gallery1.Selected.EmployeeId
).Accepted,
"Yes",
"No"
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Strange. I'm still get the message - Except Table value.
Accepted column is bit column in SQL. Hope that helps.
HI @oappdev ,
I am not an SQL user, but will this work
If(
LookUp(
'[dbo].[FluTrackerDetail]',
Id=Gallery1.Selected.EmployeeId
).Accepted=1,
"Yes",
"No"
)
I assume the Id is a simple numeric field.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi @oappdev ,
Just checking if you got the result you were looking for on this thread. Happy to help further if not.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi @WarrenBelz , Thank you so much for checking in. My apologies for the delay. Long week, 🙄 still getting a warning message. Expected Table value.
DefaultSelectedItems Property:
If(
LookUp(
'[dbo].[FluTrackerDetail]',
Id=Gallery1.Selected.EmployeeId
).Accepted=1,
"Yes",
"No"
)
Items: ["","Yes","No"]
Is just strange why is defaulting to No instead of NULL.
Hi @oappdev ,
I was tackling the wrong issue I think -try this
If(
LookUp(
'[dbo].[FluTrackerDetail]',
Id=Gallery1.Selected.EmployeeId
).Accepted=1,
{Value:"Yes"},
{Value:"No"}
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi @oappdev ,
Just checking if you got the result you were looking for on this thread. Happy to help further if not.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Добрый день! Что такое accepted здесь? у меня аналогичная проблема
Check out new user group experience and if you are a leader please create your group
Did you miss the call?? Check out the Power Apps Community Call here!
See the latest Power Apps innovations, updates, and demos from the Microsoft Business Applications Launch Event.
User | Count |
---|---|
257 | |
241 | |
83 | |
36 | |
28 |
User | Count |
---|---|
301 | |
268 | |
118 | |
68 | |
46 |