December 3, 2015 at 7:36 am
Hello,
could use some help with the Div by 0 error in the following expression. Thanks
=(ReportItems!qty_complete.Value/(ReportItems!qty_complete.Value + ReportItems!qty_scrapped.Value))
December 3, 2015 at 7:49 am
How about this:
=IIf((ReportItems!qty_complete.Value + ReportItems!qty_scrapped.Value) <> 0, (ReportItems!qty_complete.Value/(ReportItems!qty_complete.Value + ReportItems!qty_scrapped.Value)), 0)
December 3, 2015 at 7:51 am
Thanks for trying but, this did not work.
December 3, 2015 at 8:08 am
I was able to solve this using some simple code from this;
Thanks
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply