Slice creation issue

Dear Team,

I have the data mentioned below. I want to create slices likes students and comments but excluding the default comment “Nil”

If I understood your request, you could use a condition rule like NOT([Complaints]=“Nil”)

1 Like

Thank you.

if it blank instead of nil what will be the formula

OR(
ISNOTBLANK([Complaints]),
NOT([Complaints]=“Nil”)
)

thank you!!! @Aleksi

You’re welcome