Hi,
I have a Choice field of status.value and its Open Or close how can i make easy like button to click to close or click again to Reopen
Hi @WarrenBelz
I Try this on the Default value of StatusChoose
If(
!isBlank(vReset) && ThisItem.IsSelected,
vReset,
Parent.Default
)
DID NOT WORK BUT WHEN I TRY BELOW IT WORKED.
If(ThisItem.IsSelected,vReset,Status.Value)
@WarrenBelz thank you for helping me 👌
You did not say your drop down was in a gallery and there was one for every item - I missed this in your last post as I could not enlarge the screen shots enough.
Try this on the Default value of StatusChoose
If(
!isBlank(vReset) && ThisItem.IsSelected,
vReset,
Parent.Default
)
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.
Sorry same issue
If(
!isBlank(vReset),
vReset,
Parent.Default
)
Hi @WarrenBelz
StatusChose dropdown Default i have changed to only VReset and error gone then button changes the open close,
If(
!isNull(vReset),
vReset,
Parent.Default
)
THIS IS NOT WORKING AS IT GIVES AN ERROR
but the only problem is changing all status on the gallery not only the selected record?
Try
UpdateContext({vReset:Blank()})
instead of
UpdateContext({vReset:Null()})
I was working on a Flow when I responded to you and gave you the wrong syntax for clearing.
Also no need to rename controls - I just needed to know their names.
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
i rename controls ChangeButton for button and the dropdown status is StatusChoose and still error
Thanks
@Ramole ,
I bit hard to see from your screenshots.
Can you please give me:
Thanks
Hi @WarrenBelz
Thanks for replay but i am having a problem to work please see the screen shot if i missed anything
Thanks
Hi @Ramole ,
So that I understand you correctly, you have a
For this example I will use the names (replace these with your field and control names)
So the OnSelect of ChangeButton would be
If(
StatusChoose.Selected.Value = "Open",
UpdateContext({vReset:"Closed"}),
UpdateContext({vReset:"Open"})
);
Reset(StatusChoose)
On the Default value of StatusChoose would be
If(
!isBlank(vReset),
vReset,
Parent.Default
)
One last thing - on the OnVisible property of the screen<
UpdateContext({vReset:Blank()})
All of this should do what you need.
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.
WarrenBelz
146,524
Most Valuable Professional
RandyHayes
76,287
Super User 2024 Season 1
Pstork1
65,906
Most Valuable Professional