I have done some searching on here for this particular problem, and while it usually brings me to executive reports I don’t think its the solution I need as this seems to point more torwards creating graphs with the stored data (or just don’t understand them <-- Likely).
I have a weekly BAQ report that I run for Purchasing and one of the KPI items that they want to see is the amount of PO suggestions that were present at the start of the PREVIOUS week. So when I run the report on Monday, I need to have stored the # of suggestions that were present the previous Monday…the only way I can think to do that is run a BAQ, and store that number somewhere the previous Monday, and pull that number into the report when it runs on the current Monday…
A swift kick in the right direction would be appreciated…
You could try to store the # of suggestions in a UD table, update that UD table every time the BAQ is run (would need to change to a UBAQ), then include the UD table in your scheduled (U)BAQ (would need to come up with a clever way to join, maybe Datepart(wk,…) = Datepart(wk,…)-1 could work). There may be an easier way, not sure.
Thanks Adam…I figured the UD table option was probably where I was heading but I haven’t really done ANYTHING with UD tables so just starting down that road now…
This looks interesting…certainly a better direction that where I was going…i will venture down this path and see where I get too! Appreciate both suggestions @snguyen and @Asz0ka!