Hiding Map Pins

I would like to only display customer map pins on map which job status = “not started” only. I would like to hide all other.

I created a slice from Jobs table: [Status]=“Not Started”. How do I cull out the “No” responses?

Thanks

AND( [Status]=“Not Started”, ISBLANK([Status]))

1 Like

What are “No” responses in your data?

1 Like

I figured it out. I was overthinking it. The splice did work. I was setting up map view incorrectly. I was setting the map column to status instead of address. Rookie mistake.

Thanks for the quick responses!!

2 Likes