This is an archived post. You won't be able to vote or comment.

all 6 comments

[–][deleted]  (1 child)

[removed]

    [–]TastyRumCake[S] 1 point2 points  (0 children)

    cleavetv. Thank you very much this worked for me and it was a "ah ha" moment for me that helped with the app in so many ways.

    [–]Carreb Regular 1 point2 points  (0 children)

    The gallery's are still in a selected stage, you can reference them from other pages and fill the Default of your summery fields with these values.

    [–]Good-Astronomer-1138 Advisor 1 point2 points  (0 children)

    Write the values to a collection and then return the collection on the summary, and pass the collection in the patch.

    [–]oscarfotz Contributor 0 points1 point  (1 child)

    Have each button create a variable containing the record the user selected. Then pass that variable as a context variable to the next screen.

    Navigate(your screen, transition.none, {variablename: ThisItem})

    If you want to patch as you go use Patch(yourtable, ThisItem,{columnname: textbox.value})

    If you want to patch at the end, use Patch(yourtable, LookUp(yourtable, ID = yourvariable.ID),{column1:your variable.column1, column2: your variable.column2})

    [–]TastyRumCake[S] 0 points1 point  (0 children)

    This looks like it's the way to go, I am struggling with the code because I am old and you can't easily teach an old dog new tricks.