Value manipulation in transformation

Adam Řezníček asked on March 12, 2015 18:15

Hi,

is there any way to use abs() (or remove character from returned value) method in transformation? Eval() return value e.g. -100, but i have to show only 100.

Thanks Adam

Recent Answers


Brenden Kehren answered on March 12, 2015 18:46

You can use standard C# code in your transformation. Try this out ValidationHelper.GetString(Eval("Column"), "").Replace("-", "")

0 votesVote for this answer Mark as a Correct answer

   Please, sign in to be able to submit a new answer.