SSRS plot value of DataSet multiple times - sql-server

I have a table of data like so.
I would like to plot it on the same graph. I managed to get it to plot when putting it in a table that sorts on category "GreenTemp1", but what I would like is to plot it together on the same chart. Can anyone help me?
Edit:
I would like it to plot it like this but it does not show anything.

Add a separate series for each of the DeviceNames. The value expression for each series can be along the lines of:
=iif(Fields!DeviceName.Value = "GreenTemp1", sum(Fields!Value.Value), Nothing)
Obviously change the number for each series. Give each series its own legend name as well, and remove the category group for DeviceName.

Related

facet_wrap: using x_free scale but having only 2 different x-axis with date

I performed on three sites in two different periods messurements. Now i want to show the results using facet_wrap. Here I want to have 2 columns (first line first period, secound line secound period) and each site in a row. To have only the respective dates in the respective graph, I use x_free, resulting in the desired graph. Now I would like to delete the X axis labels in the above graphs so that the date is only visible in the last graph.
My data looks like that:
enter image description here
My code for the plots is this one:
test_data$date <- as.Date(test_data$date )
Boxes <- ggplot(test_data, aes(date, number_bats)) +
geom_col(aes(date,number_bats)) +
facet_wrap(~Box, ncol = 2, scales = "free_x")
print(Boxes)
and the resulting graph looks like that:
enter image description here
How can I now delete the dates in the first two graphs, but keep it in the last one?
Thanks for your help!
I found this package "ggh4x" with an extended facet function (facet_grid2 and facet_wrap2) which solved my problem.

SSRS - show missing axis on column chart where there are no values?

I have a column chart in SSRS that looks like the attached. This shows the percentage of calls across the day. I have been asked to also show the hours on the chart where there were zero calls.
I have tried adding this into my dataset in SQL however this turned almost 200 rows into 20000 rows (due to the period of time looked at which can sometimes be years)
I have tried using the lookup function to add a time dimension into my report, and then join the dataset onto this time dimension - I then found out that I can't use SUM in a lookup function so I am a bit stuck. Does anyone have any workarounds for this?
Value expression is "=Sum(Fields!Calls.Value) / Sum(Fields!Calls.Value, "UsageSummary")"
What chart looks like now (wrong)
What chart should look like (with all hours included)
Have you tried clicking on the horizontal axis properties
On the Axis Options update the Interval from Auto to 1

(SSRS) Tablix advanced grouping, hide cells and align cells

I am trying to achieve a result like below (edited in paint):
But so far I have only achieved this:
As you can see, I get whitespace cells between the timestamps and values above, probably due to the cells above that is manuipulating the tablix layout.
How can I make the values cells become "snapped" next to the timestamps like the first picture?
This is how it looks in SSRS:
According to your image, seems you could not achieve your goal in your current Tablix design . you need to change your report design using list , like below:
(add one more table in the list to display header)
In this scenario , you should make sure that you have the full records under the group Meter2 and Interval2 to make up the column group cells.
Otherwise you could get like below:

Multi-line Text formatting on a Chart's bar value

Is it possible to format multiline text on series values labels for a stacked bar chart.
The image below is what I am after.
The things I have tried so far.
Add a table to the report with column groups for each grade. Each column group will have ten detail columns so I can draw the pesky arrow lines, actually two groups of ten, one for the line and one for the arrows. That would equate to 12 x 20 textboxes to support stupid arrows.
Row group by grade a place a chart in each group detail. This is fine and then I can play with the horizontal axis offsets and get an almost identical match, however, I need to have two rows of text per value on the chart, is this possible?
I am open for other options. I might attempt to migrate this over to a kendo chart as I have converted a few chart reports that are impossible to render on the servers.
Is it possible to format multiline text on series values labels for a
stacked bar chart.
Yes, it is possible. You can use Environment.NewLine to produce a new line in any SSRS expression.
Even you can use it in the stacked bar chart series label, just concatenate the value you want to show with the produced new line.
=Fields!FirstLineValue.Value & Environment.NewLine & Fields!SecondLineValue.Value
It should produce:
Hopefully this is what you need.

Create a Pie Chart from single row, multiple column dataset in SSRS

I'd like to create a pie chart from a dataset that returns a single row with multiple columns in SSRS. Is this even possible?
I've tried unpivoting the data so I can have multiple rows, and I can't quite pull it. It seems I can't unpivot aggregated data.
So I'm not sure what my next step is. Should I try to unpivot the data, or can I build an expression for the values in the pie chart?
Here's sample data:
ID | IndivMonthSales | IndivBudget | IndivDifference
PAW $30,456.31 $60,000.00 $29543.69
The result I'm looking for is the Pie chart to use the values from IndivMonthSales and IndivDifference (which add up to 100%)
I guess there's 2 questions:
is it possible to unpivot aggregated data (if so, how?)
is it possible to use expressions for Pie Chart values (if so, how?)
I'm very grateful for any and all help.
Cheers!
Dave
I believe what you are asking for can be very simply solved by placing both measurements as values in the pie wizard:
Resulting in :

Resources