I have a PowerApp where an end user might come in and edit the form several times as the process for the invoices goes through its steps.
We have a SP Choice column called Resolved Status where we would like if the "Yes" choice is clicked that another choice column called Working Status in the PowerApp will change to the choice "Resolved." How can I do that within my Edit Form?
Solved! Go to Solution.
Hi @DS2
1) Yes, it can't be automatically currently you need to choose it already,because you need the formula expression just filter the choices items and keep the ones you want,however,you need to choose it by mannual.If you want to autofilled you can use one Lable or Textinput to instead.
2)What I have show is just one example,if you want to show more selected items if not choose "Yes",please try to change the formula expression as this:
If(DataCardValue4.Selected.Value="Yes",Filter(Choices('2019test'.'Working Status'),Value="Resolved"),Filter(Choices('2019test'.'Working Status'),Value<>"Resolved"))
More information:
Hope this could be helpful.
Best Regards.
Yumia
Hi @DS2
Do you want to auto choose one Choice column type's value based on another Choice column type's selected value?
You can try the following workaround,I test as next:
App Test:
DataCardValue5.Items=If(DataCardValue4.Selected.Value="Yes",Filter(Choices('2019test'.'Working Status'),Value="Resolved"))
(DataCardValue5 is the Working Status Column,DataCardValue4 is the Resolved Status Column in my SP list,they are all choice column type ,the green color in the formula expression is the control name ,column name,and data source name on my side, you can change to yours on your side)
Check:
Hope this could be helpful.
Best Regards.
Yumia
This is very close I think, but there are two issues:
1) It is hard to tell from the bottom image, but it would seem that when you take your mouse and change "Resolved Status" to "Yes," you must then go to the Working Status field to find Resolved and then click it.
>>>I have tested and I have to go to the Working Status field to find Resolved and then click it - and was hoping for something automatic. The problem is that people do not remember to go to Working Status to change it, this the need for the change to be automatic
2) The choice column for Working Status no longer has a choices list. So, if I have any other status than "yes" for Resolved Status I should be able to click "Working Status" and see and choose the choices there. Since the addition of the code, the choices have disappeared.
Much appreciate the help!
Hi @DS2
1) Yes, it can't be automatically currently you need to choose it already,because you need the formula expression just filter the choices items and keep the ones you want,however,you need to choose it by mannual.If you want to autofilled you can use one Lable or Textinput to instead.
2)What I have show is just one example,if you want to show more selected items if not choose "Yes",please try to change the formula expression as this:
If(DataCardValue4.Selected.Value="Yes",Filter(Choices('2019test'.'Working Status'),Value="Resolved"),Filter(Choices('2019test'.'Working Status'),Value<>"Resolved"))
More information:
Hope this could be helpful.
Best Regards.
Yumia
Hi @DS2
1) Yes, it can't be automatically currently you need to choose it already,because you need the formula expression just filter the choices items and keep the ones you want,however,you need to choose it by mannual.If you want to autofilled you can use one Lable or Textinput to instead.
2)What I have show is just one example,if you want to show more selected items if not choose "Yes",please try to change the formula expression as this:
If(DataCardValue4.Selected.Value="Yes",Filter(Choices('2019test'.'Working Status'),Value="Resolved"),Filter(Choices('2019test'.'Working Status'),Value<>"Resolved"))
More information:
Hope this could be helpful.
Best Regards.
Yumia
Is there any way to do this automatically?
Thanks!
Hi,
So my situation is that I have a sharepoint list as part of a reward system. Each person has a numeric value in a column called 'Points'. When a person is rewarded, the numeric value increases by 1. Each person is assigned a department also.
I want to see if there is a way to select a department and filter all persons in that category and add a value of 1 to each. (In other words, bulk uploaded points to a whole group).
Any help is much appreciated! 🙂