I have a report with parameters @Region and @Store as drop-down selections. The selections for @Store will filter according to the value selected for @Region. NULL for either parameter represents ALL records (no filters applied).
The challenge is that I don't want the user to be able to select @Store without specifying @Region first. However, if BOTH are NULL (ALL Stores in ALL Regions), that's ok.
Another way of putting it:
ACCEPTABLE:
@Region NOT NULL and @Store NOT NULL (a selected store in a selected region)
@Region NOT NULL and @Store NULL (all stores in a selected region)
@Region NULL and @Store NULL (all stores in all regions)
UNACCEPTABLE:
@Region NULL and @Store NOT NULL (a selected store with NO region selected)
Any ideas?


