Using %TriggerValue% to have one remote web trigger launch multiple macros

I'm testing the great new remote web trigger feature.

If I run an "Alert" action with %TriggerValue%, I get the correct alert.

However, if I try to run an "if" command, the variable "TriggerValue" is always seen as empty...

My goal is to be able to use %TriggerValue% to determine which KM macro will run. Any ideas on how to achieve that?

Thanks!

Hi @orsini,

If I'm reading your post correctly (in the future, please post the actual macro you would like help with, as it makes troubleshooting much easier) the problem is because %TriggerValue% is a token, not a variable. To put it visually, this won't work:

51%20PM

But this will:

52%20PM

That was it. Thanks Gabe!