I have tried adding a simple filter to my report's recordset, but I can't make it NOT filter when blank/null. For example, I want the user to be able to filter by Shift (Shift 1 or Shift 2), but if they leave it blank then it should have no filter... it should show all records. But when I leave the filter blank it gives me zero records. Anyone know how to get all records using a filter?
Now, I can do this easily if I use a parameter instead of a filter because I have full control in my stored procedure. But that requires a call to the DB everytime instead of just filtering the existing cached dataset.
Now, I can do this easily if I use a parameter instead of a filter because I have full control in my stored procedure. But that requires a call to the DB everytime instead of just filtering the existing cached dataset.