Suggestions for GROUPED ACTIONS with copy row needed

  1. As I understand, an action cannot be used in a form.

  2. The action โ€œCopy row and editโ€ cannot be paired with other actions in a group.

?: what Iโ€™m trying to do is copy a row record, and then have specific columns cleared to blank with one button, is this possible? Maybe if there was an option to copy without opening edit, or apply other actions to copy before the record is opened in form to edit (?)

Thanks everyone!

Solved Solved
1 8 1,660
1 ACCEPTED SOLUTION

[_THISROW]. shouldnโ€™t be needed here. Try instead:

LINKTOFORM(โ€œProduction_Formโ€,
โ€œJob Nameโ€, [Job Name],
โ€œPage+โ€, [Page+],
โ€œImage IDโ€, [Image ID],
โ€œFinal File Nameโ€, [Final File Name],
โ€œCategoryโ€, [Category],
โ€œBackground Setโ€, [Background Set],
โ€œNeeds Prep?โ€, [Needs Prep?],
โ€œStudio Notesโ€, โ€œReshoot Reason:โ€,
โ€œRESHOOT?โ€, โ€œtrueโ€,
โ€œADโ€, [AD])

View solution in original post

8 REPLIES 8

Steve
Platinum 4
Platinum 4

You can open a form to a new row using the App: go to another view in this app action and using LINKTOFORM() to target a form view. The new row will use the default initial values for each column, and/or you can set specific columns to other values using arguments to LINKTOFORM().

Great suggestion @Steve - Iโ€™m missing something thoughโ€ฆ The LINKTOFORM action is all blank when should have some values based on this:

LINKTOFORM(โ€œProduction_Formโ€, [Date Shot], โ€œโ€, [RESHOOT?], โ€œtrueโ€, [Assistant], [_THISROW].[Assistant])

Says formula is valid but form is empty, no changes carried over. Thanks!

Try intead:

LINKTOFORM(โ€œProduction_Formโ€, "Date Shot", โ€œโ€, "RESHOOT?", โ€œtrueโ€, "Assistant", [_THISROW].[Assistant])

Note that Iโ€™ve replaced the square brackets around the column names with double quotes: you want to identify the columns by name, not reference them.

Thanks @Steve !
That helped get my static values to populate the new form!

Now my secondary issue is the columns looking for [_THISROW] values are not populating anything, ideas? So far the formula looks like this:

LINKTOFORM(โ€œProduction_Formโ€,
โ€œJob Nameโ€, [_THISROW].[Job Name],
โ€œPage+โ€, [_THISROW].[Page+],
โ€œImage IDโ€, [_THISROW].[Image ID],
โ€œFinal File Nameโ€, [_THISROW].[Final File Name],
โ€œCategoryโ€, [_THISROW].[Category],
โ€œBackground Setโ€, [_THISROW].[Background Set],
โ€œNeeds Prep?โ€, [_THISROW].[Needs Prep?],
โ€œStudio Notesโ€, โ€œReshoot Reason:โ€,
โ€œRESHOOT?โ€, โ€œtrueโ€,
โ€œADโ€, [_THISROW].[AD])

[_THISROW]. shouldnโ€™t be needed here. Try instead:

LINKTOFORM(โ€œProduction_Formโ€,
โ€œJob Nameโ€, [Job Name],
โ€œPage+โ€, [Page+],
โ€œImage IDโ€, [Image ID],
โ€œFinal File Nameโ€, [Final File Name],
โ€œCategoryโ€, [Category],
โ€œBackground Setโ€, [Background Set],
โ€œNeeds Prep?โ€, [Needs Prep?],
โ€œStudio Notesโ€, โ€œReshoot Reason:โ€,
โ€œRESHOOT?โ€, โ€œtrueโ€,
โ€œADโ€, [AD])

Awesome, thanks for clarifying, great solve for accomplishing my goal, many thanks!!!

Dear Steve, I can see you really know your stuff. I came to this post from a different challenge ("Add Many" records in a one-many relationship) but is possibly related by the need to copy (multiple) rows and add to a table.

Any ideas?

Thanks

@MINCH_Household_Wate
You can achieve this with triggering AppSheet API thru a webhook workflow rule and itโ€™s easy to accomplish actually regarding what data you want to record to the other table.

Top Labels in this Space