Can I show update time on KPI in report builder? - reporting-services

I am designing Collection KPI in Report Builder. This KPI is updated every 5 minutes. Can I show the update time above or within the KPI? I shared an example
Thank you.

Related

Seperate SSRS report weekly between a date range

I currently have to run a report weekly back to 2014 till now. Is there a way where I can provide it a date range of 4 months and the report can be divided by calendar weeks within the date range?
Any questions, feel free to ask. Thanks
Create a data-driven subscription on the report.
Build a query that returns a table with one row per each set of parameter values you want to run. Assign the columns to the correct parameter and then run the subscription.
If you have specified a file share as the output, all the different versions of the report will output to that share.
Obviously this requires you to provide SSRS access to that file share.

ssrs linked reports not updating

I have created a linked report in ssrs. I have made a action from the values in a Pivot matrix to another report which shows just raw data. My Pivot matrix is perfect however when I click on a value for example 9 and takes me to my raw data report I only get back 8 results. My parameters pass through fine.I ran a query in sql server to see that result did not come back in the report and that record was created on a different date than the other 8 that came back which were all created on the same date.
Note some linking works fine if I click on the value of 10 it will bring back 10 results.
The scenario I have is the matrix has a count value of items on a particular day. For example day 1 has 10 assets sold and when I click on that value it is meant to show the 10 assets in another report. Sometimes only less will show. could this be a cache error or a coding error?
Thanks

How SSRS report are generated once subscribed, Serially or Parallel

Suppose we have created only one schedule to generate 100 reports.
Once the schedule is subscribed , how the report will be generated ?
Will all 100 reports generated simultaneously ?
or
Reports will be generated sequentially one by one ?
P.S . I am not talking about multiple subscription.I am talking about reports in only one subscription.
I need a little more clarity, are you talking about one subscription running multiple reports or multiple subscriptions?
This isn't really an answer, but I am 4 points too short to comment yet.
This article has some information. Basically it depends how your RS server is set up. Mine is set pretty low. I never see more than one subscription/report running at a time.
http://msdn.microsoft.com/en-us/library/ms157273.aspx
For my data driven subscriptions I can see the reports run one at a time during testing.
---update--
MaxActiveReqForOneUser value from rsreportserver.config defines number of report running inparallel . default value is 20
P.S. Subscribed reports run in parallel and maximum report running in parallel are 20 by default.

MSCRM 2011 Total record count by day

One of our team who maintains subscriber content in CRM requested a report that displays total number of active records, email subscriber and email unsubscribers. I can create a report that shows current total for all three subject above. But can't show the historical details.
For example: Active used count for yesterday was 400K then today 403K and tomorrow 4007K, I want to produce a graph that shows the climbing of these numbers by day.
My first thought is to create new entity that stores all these details or a new table in sql and use that in reporting with SSRS.
I want to know if you guys have ever come across this and if so what you think is the best solution?
try once Group by date (Or)
Create a new Entity and write a workflow that runs every day and stores all the counts date wise.
fetch the custom entity data into the report.

Sub Reports In Main Report - Access Reports

I have an access report that has 4 sub reports/forms. each of these sub report is meant to display patients admitted,transfers in , transferred out and discharged from a particular ward. I have 4 different queries to perform the task. When i run the queries alone they work fine . The queries prompts the user for start and end date and display the results.
The problem is when i attach each of these queries to each sub reports and run the report, it asks for the start date 4 times, which is logically right because it is running the 4 sub reports separately.
I cannot combine all into one query because even though the data is pulled from 1 table the conditions are different. I am also restricted in creating a form and a button to pull the report base on start dates supplied by user as i need to run the report directly.
Is there any way that i can display data on all 4 sub reports by entering the date only once.
I use Ms Access 2003
Any help would be appreciated.
Thanks
Regards.
On the report open event, popup an input box asking for the date. Use that date as the parameter for each query.
Don't have time to test it, so a possible obstacle to this idea is if the open event happens after the report starts running the queries.
If you use Sub-rpt wizard it auto connects and only requires 1 set of triggers. I have 6 Sub-rpts on 1 main form and all use a number to start the queries. I only entry the number 1x and all queries & reports run. It will connect an already created report as a sub-rpt.