Skip to main content

OR

When using multiple labels, this script's result will be instances from the timeline that contain either label.

FORMAT: "label_name" OR "label_name"


DEFINITIONS:

  • Labels: Quoted text representing labels in the timeline.

EXAMPLE 1:

$a = "Block" OR "Spike"
show count $a

Shows the number of instances that have either "Block" or "Spike" labels in them.

EXAMPLE 2:

$a = "a" OR "b" OR "c" where row = "Test"
show count $a

Shows the number of instances that have either "a" or "b" or "c" labels in row "Test".