How to remove - Symbol from this value
Hi,
If it is double value. Did you tried this value by multiplying with -1.
Finalvalue = yourdoublevalue * -1
Hi,
Can you try the Math.Abs as the following? it returns positive value even if input is positive or negative.
Math.Abs(yourDoubleVar)
Regards,
2 Likes