Totally works, just need to write the expression in a way that JS recognize it
4.5 stars just for the lack of information, but long story short, after searching and trying i found that the expression has to be declared as if it was for JS, go to https://mathjs.org to watch examples on how to declare expressions, the page even has a box for testing the expressions. I also need to add that in bubble, the expression is written as text, do not use the dyanmic data button for operations (adding, substracting, multiplying, etc) as it may not work properlly, use dynamic data only to retrieve values/data from your database or previous steps. For example i had to calculate this formula T * atan(0.151977 * (HR% + 8.313659)^(1/2)) + atan(T + HR%) - atan(HR% - 1.676331) + 0.00391838 * (HR%)^(3/2) * atan(0.023101 * HR%) - 4.686035 where T and HR% are values that i have in my database, i wrote the expression just like that and then changed T and HR% for the dynamic data that links them to my database, i hope this helps someone else