I have a grouped action made up of 2 actions that applies to rows in table TackleBox:
Action 1: Adds data from a row in tackle box to table Rods
Action 2: Deep link using LINKTOROW to a form created from table Rods displaying the row of data just entered from Action 1.
I have the action display only on certain views by placing the following in the ‘Only if this is true’ portion of the behavior:
OR(
Context(“View”)=TackleBoxHarnessDetail,
Context(“View”)=TackleBoxWFSJigsDetail,
Context(“View”)=TackleBoxSpoonsDetail,
Context(“View”)=TackleBoxCranksDetail
)
The issue I am trying to solve is I want to add another condition to the ‘Only if this is true’ that evaluates the last row of a different table (Trips) to see if the column [Status] is “Fishing”
I changed the above to:
AND(
IN(Trips[Status], LIST(MAXROW(“Trips”, “_RowNumber”, [Status]=“Fishing”))),
OR(
Context(“View”)=TackleBoxWFSJigsDetail,
Context(“View”)=TackleBoxSpoonsDetail,
Context(“View”)=TackleBoxCranksDetail,
Context(“View”)=TackleBoxHarnessDetail
)
)
Although its gets a green light in the expression checker, the button never displays. Can anyone see my error?
Thanks!