Skip to content
Advertisement

Add Current YTD / Total Last Year comparison columns

We have two types of records: externals (acc), and internals (referred just as records).

Currently my query returns (acc) monthly totals, and (acc) totals from the date of implementation of the system (inception).

We now need to add total for (acc) Current YTD (separated by a ‘/’ forward slash), Total of (acc) Last Year.

The same for the internal records which in the query are the columns [Last Month], and [Inception Count of Records].

Add total for (internal) Current YTD (separated by a ‘/’ forward slash), Total of (internal) Last Year.

I think what I need to do is to add a few more sub-selects to get the numbers I need, but I am having trouble understanding how that part is structured and then used along what the columns that are already there.

I am including my current query that retrieves only current monthly total, and totals from the date of inception of both record types (external, and internal).

I hope all of this makes sense, because I would like to ask for some help so that I can complete this query. Any example or modification to my query, or some guidance would be awesome.

QueryRevised WHERE clause and AND condition since using sample data already filtered (to certain degree) -.

Table Definition – B1PERMIT

Table Definition – R3APPTYP

Sample Data – B1PERMIT

Sample Data – R3APPTYP

Advertisement

Answer

I think that you can do it this way (without multiple subqueries):

If you really need the TMP condition for the “last month” part, you can easily include it in the respective CASE expression.

To combine the new fields (added)

To combine the new fields and make them character strings, I suggest to – for simplicity – use another CTE. Add a comma behind the closing bracket of the first CTE (BaseData) and replace the SELECT statement by a second CTE and a final SELECT statement as follows:

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement