I know this is a simple one and one of you is going to just look at it and know immediately ! I just can't get the right syntax LOL
If(ThisItem.QueryStatus="New" , UpdateContext({InProgress:true}),UpdateContext({InProgress:false})
I want to say If Query Status is New or Newly Assigned !!
Solved! Go to Solution.
Hi @vffdd ,
The long version
If(
ThisItem.QueryStatus="New" ||ThisItem.QueryStatus="Newly Assigned",
UpdateContext({InProgress:true}),
UpdateContext({InProgress:false}
)
but this would also work
UpdateContext(
{
InProgress:
ThisItem.QueryStatus="New" || ThisItem.QueryStatus="Newly Assigned"
}
)
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 @vffdd ,
The long version
If(
ThisItem.QueryStatus="New" ||ThisItem.QueryStatus="Newly Assigned",
UpdateContext({InProgress:true}),
UpdateContext({InProgress:false}
)
but this would also work
UpdateContext(
{
InProgress:
ThisItem.QueryStatus="New" || ThisItem.QueryStatus="Newly Assigned"
}
)
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.
brilliant the 2nd one worked perfectly. I was going to try the || but I always thought they meant And not OR !! 🙂
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 |
---|---|
203 | |
187 | |
81 | |
50 | |
37 |
User | Count |
---|---|
290 | |
244 | |
122 | |
74 | |
55 |