If i have 2 variables 1 captured from a spreadsheet and another from a webpage how can i match the 2 to check if there outputs are the same?
I have looked in matches activity but find regex too complicated.
Use an If activity. If MySSVar is the variable from the spreadsheet, and MyWPVar is the variable from the webpage, you can use the If activity with condition MySSVar = MyWPVar. If they are equal, the “Then” portion of the If activity gets executed. As a placeholder, you could put a message box here saying that the variables are equal.