Hello everyone,
I'm having troubles getting the id of the edit form that has not submitted. For example, I first want to submit each request separately which each one will need to get the ID of the grand request; then I will submit the grand request containing all the request items. However, I can't get ID of the grand request because it has not yet submitted at the time of submitting the item.
Could anyone help me with this issue? Thank you so much in advance.
Solved! Go to Solution.
Hi @tramlam7413 ,
This has its dangers if you have concurrent users as all you can really do is show the next ID available
First(
Sort(
SPList,
ID,
Descsnding
)
).ID + 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 @tramlam7413 ,
This has its dangers if you have concurrent users as all you can really do is show the next ID available
First(
Sort(
SPList,
ID,
Descsnding
)
).ID + 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