Pipeline Blocks

I’m trying to send a notification email out when an alarm is active for a specified shift roster. If I’m not mistaken, the switch block can read a tag value (my tag specifying the current shift). I am using a switch block off of the start block. My two outputs are “Shift A” and “Shift B”. I’m not sure how to read, or call out, that tag through the switch blocks expression.

Thanks,

You can just use the expression tag reference syntax (fully-qualified, since this is globally scoped):
{[default]path/to/tag} will return the tag’s value.

This worked! Thank you!