You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to automate something but I'm stuck. I want to identify seasons where all users have watched every episode, and then potentially delete those seasons to save space.
The Problem:
I'm trying to compare a list of users who watched all episodes with a specific group (like "Jane" and "Jack"). I thought using the equals operator (==) would work, but it doesn't seem to be behaving as expected.
Here's what I've tried:
Comparing the list to all users ["Jack", "Jane"]
But it doesn't work. It seems to return true even if one of those values is true, which confuses me because I thought that was what contains did.
The Question:
Is there a way to achieve this using the equals operator, or is it a bug? Alternatively, is there a more efficient way to check if all users have watched everything in a season without creating multiple sections for each user combination?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi everyone,
I'm trying to automate something but I'm stuck. I want to identify seasons where all users have watched every episode, and then potentially delete those seasons to save space.
The Problem:
I'm trying to compare a list of users who watched all episodes with a specific group (like "Jane" and "Jack"). I thought using the equals operator (
==
) would work, but it doesn't seem to be behaving as expected.Here's what I've tried:
But it doesn't work. It seems to return true even if one of those values is true, which confuses me because I thought that was what contains did.
The Question:
Is there a way to achieve this using the equals operator, or is it a bug? Alternatively, is there a more efficient way to check if all users have watched everything in a season without creating multiple sections for each user combination?
Any help would be appreciated!
Beta Was this translation helpful? Give feedback.
All reactions