Ok there are a couple of issues here. Firstly, you are wanting a subtotal report. Secondly you are wanting to group totals from different fields. Not impossible, but not completely straightforward.
You can easily get a count of how many "Discipline" or "I.G. Reports" you have. Create a query with just the fields "Start Date" and "Issue 1", turn on Grouping, and make sure it groups on "Issue 1" and change the query to "Count" on "Start Date". This will give you totals of each type of "Issue 1", PROVIDING you have a start date in every record. If not, then you need to count a field which is present for every record. A Primary ID key would be better, but I don't know any more about the structure of your DB. You can then do the same with "Jurisdiction", just have that and the start date. Now if you want the results of these two queries together, you can join them with a UNION query. To do this you will need fields with the same names, so when creating your initial queries, I would manually change the field names so you have something like "Title: [Issue 1]" and "Count [Start Date]". Before we get into Union queries, see how you get on with creating the "Grouped" queries and we'll take it from there.