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
You can use standard C# code in your transformation. Try this out ValidationHelper.GetString(Eval("Column"), "").Replace("-", "")
ValidationHelper.GetString(Eval("Column"), "").Replace("-", "")
Please, sign in to be able to submit a new answer.