So, I have several screens inside my app which can be edited by users of a certain role.
Currently, this is how I am handling the submission:
Now my problem is A) when submitting new data, the row with Timestamp seems to be pushed down and will not display in my details view when updated. I am assuming that the data being displayed is from the first instance of that associated row, not the most recent.
B) I am wondering if it might be better to add a choice component which gives a choice of VIEW DATA / EDIT DATA (allowing edits to happen on the details screen itself with a button for incrementing the progress, but I am not sure if this is the best route.
C) Finally, I am trying to increment the progress of the screen by +5 when the items are fully filled in, but I cannot seem to figure out how to do this with set columns. I created an action which updates the column + increments the progress, but when I apply it, it overwrites all of my data to go back to having no answer.
Any help would be much appreciated!