I have a situation where I want to set multiple variables when a condition mets.
IF(expr1, @reading:=0 and @prevdate:=@stepdate, @reading:=@reading)
as you see I want to set @reading:=0 and @prevdate:=@stepdate but this does not work.
how can I set multiple user-variables inside the true or false node?

