Hi!
In my rdlc file I need to do this operation in one expression. But I cant. Please could you help.
See what I do:
I have this expression for the PU's column: =Fields!PU.Value
Now I want to make a multiplication like this =Fields!PU.Value * 2
Curiosly its doesnt works. How can I resolv that please.
Loading
VulpesPosted Mar 7, 2015, 11:08 AM
It's not as if rdlc lacks users - I'm sure there are plenty of developers using it.
IsraelPosted Mar 7, 2015, 9:43 AM
But why there is no any complete documentation on rdlc (I do looking for on the net all the days)?
Thanx so much Vulpes to do always your best to help.
VulpesPosted Mar 7, 2015, 9:04 AM
I'd see if this is any better:
=Fields!PU.Value * CDbl(2)
Otherwise I'd try writing a custom function:
and then set your expression to:
=Code.MultiplyValue(Fields!PU.Value, 2.0)
IsraelPosted Mar 7, 2015, 7:04 AM
VulpesPosted Mar 6, 2015, 10:46 AM