Hi all,
I've created a flow to trigger cases based on the answers from a multiple answers question in Microsoft Form.
For example, I've selected more than 1 answers and one of them is this:
{
"name": "Training Topic",
"value": "Service Excellence Module 2 (Session 2) | 22 September, 2PM - 5PM (MY Time)"
}
But in the following step, the switch received this:
{
"expressionResult": "Service Excellence Module 1 (Session 2) | 20 September, 2PM - 5PM (MY Time)Service Excellence Module 2 (Session 1) | 8 September, 2PM - 5PM (MY Time)Service Excellence Module 2 (Session 2) | 22 September, 2PM - 5PM (MY Time)"
}
It seems like it's appending to the end of the variable instead of overwriting it and it will never match any of the case value I provided.
May I know how to work around this?