How to show certain rows from a "ref" type

I have a column [Dispatch Key]. It is a type - โ€œrefโ€ (to another Table). I only want to show the rows that have column[Complete]= โ€œyesโ€ (in that referenced table).

I tried a show if expression, but this didnโ€™t work:
[Complete] = โ€œyesโ€

I also tried this expression, but it didnt work either:
ISNOTBLANK([Complete])

Solved Solved
0 7 1,479
1 ACCEPTED SOLUTION

Oh, you donโ€™t need a slice (you can delete it), you need a Suggested values expression for the Dispatch Key column:

FILTER(
  "another Table",
  ([Complete] = "yes")
)

replacing another Table with the name of the table referenced by the Dispatch Key column.

View solution in original post

7 REPLIES 7

Steve
Platinum 4
Platinum 4

Ok. The slice was where its at! Thanks again Steve!

Ok. I spoke too soon. I am using the Row Filter condition - but for some reason i am seeing rows i shoudlnโ€™t be seeing.

In my table i have a row with column - [Dispatch Ticket] = 8906. This row does NOT have โ€œYesโ€ under the column [Complete].

Here is the expression i used:

In order for the slice to have any effect, you have to put views on top of it. Create a new view, but instead of choosing Rating Table as the For this data value, choose your new slice. Then visit that view in your app.

I did, but i see the that same row in the app. Shouldnโ€™t it be hidden?

Oh, you donโ€™t need a slice (you can delete it), you need a Suggested values expression for the Dispatch Key column:

FILTER(
  "another Table",
  ([Complete] = "yes")
)

replacing another Table with the name of the table referenced by the Dispatch Key column.

ok. That for sure worked!

Top Labels in this Space