
Originally Posted by
June7
When I read your first post and saw that data structure, I wondered if you would get to this issue but I avoided addressing. That is not a normalized data structure and will cause you issues, as you are now finding out.
There is a way to provide a filter functionality you describe but is a little more complicated. And the report would still need a textbox for each month field. It's just that all but one will be blank when filtered for one month. The alternative is to build 12 identical reports, each filtered for one month (e.g. WHERE Not [Jan] Is Null) and has textbox only for that month. User selects month on form and code opens the appropriate report.