#Size Error - Report textbox

MHamid

Active Member
Joined
Jan 31, 2013
Messages
472
Office Version
  1. 365
Platform
  1. Windows
  2. MacOS
Hello,

I have a formula in the Control Source of a textbox in an Access Report and I'm getting the #Size error when I view the report.

What am I missing in my formula? Am I supposed to be using an iferror function? If so, how? I tried it ealier and I'm still getting the #Size error message.

Code:
=IIf(Nz([Issue Name NEW])<>Nz([Issue Name OLD]),[Issue Name NEW],"")


Thank you
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
What is actually in "Issue Name NEW" and "Issue Name OLD"
Can both of these be NULL or just one?
Note that if "Issue Name NEW" can be Null at the same time "Issue Name OLD" is not, you may have an issue since you are trying to return "Issue Name NEW".
So maybe try:
Code:
=IIf(Nz([Issue Name NEW])<>Nz([Issue Name OLD]),[COLOR=#ff0000][B]Nz([/B][/COLOR][Issue Name NEW][COLOR=#ff0000][B])[/B][/COLOR],"")
 
Upvote 0
Does this involve a sub report? If a sub report has no records, it can generate this error when a report control is referencing the sub. IsError is a common way of dealing with this.
 
Upvote 0

Forum statistics

Threads
1,214,644
Messages
6,120,709
Members
448,983
Latest member
Joaquim_Baptista

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top