Hello!
I'm a novice PowerApp Builder and I've searched for this question but only found solutions that work for slightly different problems.
I have a SharePoint list with a column called: "# of touches"
Its in number format with a default value of 0.
In my app I am trying to record the number of times that I interact with a person by pressing a + one button.
I'm trying to add the value of "1" to the existing value in the column on each button press/ form submission.
On select ThisItem.'# of touches'.......?
Thank you for the help
Solved! Go to Solution.
Hi @af5555 ,
You could do this
With(
{wNo:ThisItem.'# of touches'},
Patch(
YourListName,
ThisItem,
{'# of touches': wNo + 1}
)
)
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.
Visit my blog Practical Power Apps
Hi @af5555 ,
You could do this
With(
{wNo:ThisItem.'# of touches'},
Patch(
YourListName,
ThisItem,
{'# of touches': wNo + 1}
)
)
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.
Visit my blog Practical Power Apps
Amazing! Thank you so much that was copy paste easy
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
190 | |
45 | |
45 | |
36 | |
36 |
User | Count |
---|---|
261 | |
82 | |
78 | |
69 | |
69 |