Good afternoon Epicor community!
I am trying to format the number of decimal places on the “Extended Cost” field in the Stock Status Report. I’ve done this numerous times across different fields on different reports, but this one is more complicated and is not responding to my usual method.
Here’s what the expression is showing -
=iif(( (Parameters!Pm_StkPart_WarehouseCode.Value = “” and Parameters!Pm_StkPart_LotNum.Value = “”) or (Fields!WarehouseCode.Value <> Parameters!Pm_StkPart_WarehouseCode.Value and Parameters!Pm_StkPart_LotNum.Value = “”) or (Fields!LotNum.Value <> Parameters!Pm_StkPart_LotNum.Value and Parameters!Pm_StkPart_WarehouseCode.Value = “”) ), 0, Format(Fields!Multiplier.Value * Fields!ExtCost.Value,“#,##0.00”) & CHR(160) )
I tried modifying the format component of the expression to reflect 4 decimal places instead of 2, but it does not appear to be working when I run the report -
Format(Fields!Multiplier.Value * Fields!ExtCost.Value,“#,##0.0000”) & CHR(160) )
Can anyone point me in the right direction here?
Thanks for your time and any assistance you can provide.