This Value -94718446 is double data type value, how to removve - Symbol from this double data type value

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