I have a table 'A' where each user has a flag for whether or not they want to see the count of the view 'B' with 0 records.
- If the flag is set to 1, the user should see all records from view 'B.’
- If the flag is set to 0, the user should only see the records where the Count > 0.
Here's simple example: Table 'A': Columns: UserID, ViewZeroRecords User1, 1 User2, 0 View 'B': Columns: ProjectID, boaUserID, Count 1, User1, 4300 2, User1, 200 3, User1, 0 1, User2, 4200 2, User2, 0 3, User2, 5000 User2 should not see the entry (2, User2, 0) in View B when the user looks at the page.
Any help is appreciated. Thank you Carole
Comments
1 comment