Hello Im kind of new using reporting services functions and I need help building this logic,
So I need to use an iff expression comparing a value and then calculating a price based on that,
here is what I have but is not working:
If LicenseValue=0.00 or null then I need to calculate Unit price * Qty else use the License Value
Here is what I wrote.:
=IIf(Fields!LicenseValue.Value=0.00 or null,Fields!UnitPriceFromAttr.Value*Fields!QtyPerPackage.Value,Fields!LicenseValue.Value)
Anny suggestions?