By using this website, you agree to our Terms of Use (click here)
Hi, I'm a new member and have discovered that Acumatica is a language used by Visma for coding their reports. I'd like to configure the reports to display product images, which they do. However, the issue arises when there's no image; it results in empty space being used. I want to include a condition in the visibility expression that if an image is absent, the space shouldn't be utilized. I've attempted to solve this with the expression '=IIf(IsNull([ProductImageField]), false, true)', but it didn't work. Do you have any suggestions on how I might address this problem?
Hi,
Not sure this will solve your problem but there is an error in your expression (fonction IsNull expects 2 parameters, and returns the value of the field if not null).
It would be better like this :
=IIf([ProductImageField]=Null, false, true)

