Primary View displaying results that have value in a column

I have a Primary View with a log of my inventory. How do I only show rows with a value in column โ€œJob Nameโ€

I think I would be using this expression ISNOTBLANK(Inventory[Job Name])

but I am not sure where exactly to place this. I tried UX > Views > Log > Display > Show if

But it didnโ€™t workโ€ฆ so I thought maybe I needed to make a โ€œSliceโ€ โ€ฆ soo I did that, but IDK how to apply it to my view โ€œLogโ€.

Solved Solved
0 2 134
1 ACCEPTED SOLUTION

Expression of the form Table[Column] return a List of ALL values in the Column, for the entire Table.

Using a Slice is the correct way to go here. Your expression is close to correct, just remove the Table name.

You select what data the view points at from the UX>View, just select your new slice instead of the base Table.

View solution in original post

2 REPLIES 2

Expression of the form Table[Column] return a List of ALL values in the Column, for the entire Table.

Using a Slice is the correct way to go here. Your expression is close to correct, just remove the Table name.

You select what data the view points at from the UX>View, just select your new slice instead of the base Table.

Oh wow, I did not know after making a slice it would show up in โ€œfor this dataโ€ โ€ฆ not sure how I missed thatโ€ฆ Thank you once again!

Top Labels in this Space