I have the following where clause:
Where
(( Forms!TestPage!numTotalMin is null or numTotal <= Forms!TestPage!numTotalMin) and (Forms!TestPage!numTotalMax is null or numTotal <= Forms!TestPage!numTotalMax ) )
This is returning all values in that range and null values? Is there a way to just return the values in the valid range (no nulls)??
Thanks
Where
(( Forms!TestPage!numTotalMin is null or numTotal <= Forms!TestPage!numTotalMin) and (Forms!TestPage!numTotalMax is null or numTotal <= Forms!TestPage!numTotalMax ) )
This is returning all values in that range and null values? Is there a way to just return the values in the valid range (no nulls)??
Thanks