DSS formula language - exponential functions
UserBird
Dataiker, Alpha Tester Posts: 535 Dataiker
DSS formula language missing square, square-root and exp. functions? Any plans of including in next release? Any easy alternatives to emulate?
Thanks
Thanks
Tagged:
Best Answer
-
Hello,
- The current DSS version has
exp(number)
- Square can be done using
pow(number, 2)
ornumber * number
- Square root can be done using
pow(number, 0.5)
Regards
- The current DSS version has
Answers
-
Why not 2^2?