i want to print a calculation result by chat bot. In ‘Execute code’, i have put
const loadComb = (1.35workflow.designBeamDL+1.5workflow.designBeamLL);
console.log("1.35DL+1.5LL = ", loadComb);
but bot does not reply anything. How can I make bot reply the loadComb value.
You can put the calculated result in a worflow variable.
worflow.YourVariable = YourResult
Then you can show @worflow.YourVariable
in “Send Message”
yes it worked for me