Display related data of the parent table in inline views

Hello. I would like to know if it’s possible to display in the inline view the related price list of the different suppliers once an item has been requested?? and is it possible to filter the view of the inline in a date range? So, I would only get the most recent canvassed price list.

0 1 150
1 REPLY 1

Aurelien
Google Developer Expert
Google Developer Expert

Hi @Glaiza_Victorino

Yes
In the Chil table, you may want to add a virtual column and use this expression:
[columnTypeRefThatRefersToTableParent].[columnFromParentTable]
For reference (you may want to read it, this is full of useful information):

Yes
In the parent table, you may want to add a virtual column and use an expression with FILTER()
Something like:

FILTER("yourChildrenTable",
  AND(
    [Parent]=[_THISROW],
    [TimeStamp]<NOW(),
    [TimeStamp]>NOW()-7
  )
)

For reference:

Top Labels in this Space