Deep Link Expression for Child View

Hey there. Is it possible to create a deep link expression similar to LINKTOPARENTVIEW() but instead for the child view? In other words, when touching the (!) action, I want it to take me to the detail view for that row. I tried LINKTOVIEW("House View_All_Detail") but it ALWAYS gives me the first row, instead of the row that the action is connected to. Just wondering if this is possible. Thanks!!

Screen Shot 2023-01-21 at 9.21.05 PM.png

 

Solved Solved
0 2 216
1 ACCEPTED SOLUTION

Try this in Action/Target

Do This 

 App: go to another view within app 

Target 

LINKTOFILTEREDVIEW(“Name_View_A”, [Columns_In_View_A] = [_THISROW].[Columns_In_This_Table])

 

Table_1

Item No_1Name
88Chair
89Books

Table_2

Item No_2NameColorPcs
88ChairWhite5
88ChairBlue10
89BooksWhite1
89BooksBlue20
89BooksRed30

LINKTOFILTEREDVIEW(“STOCK”, [ITEM NO_2] = [_THISROW].[ITEM NO_1])

View ( STOCK ) used table name ( Table_2 )

View solution in original post

2 REPLIES 2

Try this in Action/Target

Do This 

 App: go to another view within app 

Target 

LINKTOFILTEREDVIEW(“Name_View_A”, [Columns_In_View_A] = [_THISROW].[Columns_In_This_Table])

 

Table_1

Item No_1Name
88Chair
89Books

Table_2

Item No_2NameColorPcs
88ChairWhite5
88ChairBlue10
89BooksWhite1
89BooksBlue20
89BooksRed30

LINKTOFILTEREDVIEW(“STOCK”, [ITEM NO_2] = [_THISROW].[ITEM NO_1])

View ( STOCK ) used table name ( Table_2 )

Thank you so so very much! The expression you suggested worked with flying colors.

I used this expression with my data:

LINKTOFILTEREDVIEW(“House View_All_Detail”, [ID] = [_THISROW].[ID])

Top Labels in this Space