I'm trying to perform the calculation of the formula using the LN function, but it is not available in the component. Does anyone know if there is a way to perform a calculation using the LN?
Hi Maykell Ribeiro,
You might check this component bellow can be suitable for your purpose
https://www.outsystems.com/forge/component-overview/4035/logarithm-o11
Regards
You can calculate the natural logarithm (ln) of a number using the Math.log function, which is part of the JavaScript standard Math object.
function calculateLn(x) {
return Math.log(x);
}