Hi
I want to show zero against a date if it has no record in the query
For example I spend money on the first 5 days of the month but then save for the rest of the month and spend no further money, I would want to see the amount i spent against those days but then 0 against the remaining dates in the month
I have a table and a query, table has every date for the next 10 years in and the query has the data showing what cost I have spent for days with a record
The SQL is below
SELECT Tbl_Dates.Dates, Qry_Cells_CON_KPI_Daily_Cost.Value
FROM Tbl_Dates INNER JOIN Qry_Cells_CON_KPI_Daily_Cost ON Tbl_Dates.Dates = Qry_Cells_CON_KPI_Daily_Cost.Date_Raised
GROUP BY Tbl_Dates.Dates, Qry_Cells_CON_KPI_Daily_Cost.Value;
I know it is something simple that I have to put in the code above but cant figure it out lol
Thanks in advance