So, I have two tables:
Table1 - "Service Requests" with Columns SR#, Description, Priority
Table2 - "Details" with Columns Request#, Status(Completed, In-Progress, Open)
In both tables SR# and Request# are same. So if anyone raise any service request than while working on that request he has to update the Table2 with the same SR# in Request# column.
Now, I want to count the total number for each Status based on matching SR# and Request#. So there are three Labels each for status "Completed" , "In-Progress" and "Open", I wanna show the total count based on matching SR# and Request#.
Highly appreciate if someone can help me out.