I wrote a BAQ /Dashboard for Accounting to pull info on AP Invoices. My BAQ works great and my dashboard does too BUT. The dashboard will not pull anything for the the month of April. It will pull March and May.
The dashboard is filtering on Posted Date. You can see that the BAQ has invoices posted in April.
Are you sure you don’t have an error on your dashboard condition? In “March Worked…” screenshot IDK how you input a filter for >= 3/22/2019 but got records for post date 3/21, 3/12, 3/13 in there?! Something seems awry…
I always just make a calculated field in the BAQ that holds a copy of the date I want to filter on. Then in the dashboard, I just use the Tracker View’s fields.
I just put the start date it in of 3/1/19 I get March, April and May post dates.
[APInvHed].[InvoiceDate] as [APInvHed_InvoiceDate],
[APInvHed].[GroupID] as [APInvHed_GroupID],
[APInvHed].[InvoiceNum] as [APInvHed_InvoiceNum],
[Vendor].[VendorID] as [Vendor_VendorID],
[Vendor].[Name] as [Vendor_Name],
[APInvHed].[DocInvoiceAmt] as [APInvHed_DocInvoiceAmt],
[GLJrnDtl].[PostedDate] as [GLJrnDtl_PostedDate],
(GLJrnDtl.PostedDate) as [Calculated_PostDate2]
from Erp.APInvHed as APInvHed
inner join Erp.Vendor as Vendor on
APInvHed.Company = Vendor.Company
and APInvHed.VendorNum = Vendor.VendorNum
inner join Erp.GLJrnDtl as GLJrnDtl on
GLJrnDtl.Company = APInvHed.Company
and GLJrnDtl.APInvoiceNum = APInvHed.InvoiceNum
and ( GLJrnDtl.CreditAmount <> 0 )