User1182587605 posted
I am working on a Legacy application, In old VB application report, I have an expression
bCYrShrinkPerc = round((bCYrShrink / CYrShipVal) * 100)
I am working on RDLC and am creating a report for the same. Please check my expression. I get values of percentage like 10233.23% which is not at all correct. Please help me with this..
=iif(Fields!bCYrShrink.Value/Fields!CYrShipVal.Value>0,((Fields!bCYrShrink.Value/Fields!CYrShipVal.Value)*100),0)
I think I am doing it correctly but there is an issue with this expression...