Show and hide control

I have a gallery type view. I want to set a condition to show and hide som


e rows. Is that possible?

Add new column in your table, names [Rows] and set this value “Hide” in the row you want to hide it.

Then use this formula in slice

Not(Table_name[Rows]=“Hide”)

One way without any additional column is to use something like IN([ColumnName],LIST(Name#1,Name#2,Name#6)) with the slice’s condition.