Sum in a textbox with calculated values - reporting-services

I have got a Column (Weight) which is multiplied by the amount. I need an extra textbox in the footer which shows the Sum of Weight. But I only get the weight of the non multiplied data. Is it possible to SUM the weight without the footRow for the tablix?

Firstly get the name of your textbox in properties then you add textbox in your footer and add this:
ReportItems![Text Box name].Value

Related

Arrange Columns in SSRS Matrix by Label by Percent

I have a dataset like in the image below. I have used a Matrix in SSRS to unpivot the data.
What I have is like in the second image below. You will notice that percentage columns are at the far right. But what customers want is the name of a product followed by it percentage as seen in the last image. How do I accomplish this?
Add a blank tablix to your report, drag the agent field into it and go to row groups and add a group. Group it by the field agent. Now add next to the agent field in the tablix your phone field and afterwards the percentage field. Now your data is grouped by agents like in your image and the fields are were you placed them.

Calculate percentage of a grouping column in SSRS

Calculate percentage of "TotalFound, NotFound"
I need to calculate the percentage of the subgroup "compare".
If you name the textboxes containing your totals, you should be able to use reportitems:
= ReportItems!FoundInCMDB_Total.Value / ReportItems!NotFoundInCMDB_Total.Value
Just select each textbox containing the totals relevant to the percentage and change the name in properties. Then in the textbox you want your percentage to appear in type =ReportItems! and a list should appear including the named textboxes.
I found an answer for the (unclear) question I've tried ask above. SSRS calculates percentage group only when you total column is inside the same group. This way you can call the total as an expression in your percentage column to do calculate %. But if the Percentage is outside your X/Y group you need to mention the group name like =((Fields!Total.Value,"X")*100/sum(Fields!Total.Value,"X"))&"%"
Thanks,
Kavin

continuous subform, subtotal in footer

I have a subform for a table order, called orderdetails.
orderDetails has some textboxes that I need to a total from namely, total quantity, total cubic meters and total weight.
quantity and weight are directly inputted by the user (e.g. qty = 10, weight = 22.55) while total cubic meters is a calculation based from user inputs (length * width * height = cbm, sum of each row).
I have named my controls as txtQuantity, txtWeight, txtCBM and their control sources as quantiy, weight, cbm.
I've placed my unbound textboxes at the footer, and placed the formula =sum(txtQuantity) and have gotten #error. I tried =sum(quantity) and also got a #error.
Another side effect is that after placing these controls, I would also get #name for the controls that they are summing(sometimes. I can't pinpoint when, but if I remove the controls in the footer, they all go back to normal).
How can I resolve my totalling problem?

How do I hide a table row element based on a condition

I have a table with the fields 'TotalNumber' and 'TotalConfirmed' on each row. The row also has a Percentage field whose value is calculated in the report query, and a field with an asterisk if that percentage value is below a certain value. I want to add a summary column with sum of TotalNumber and TotalConfirmed (done), a calculation of the overall Percentage (done), and then an Asterisk in the column if the overall Percentage is below a certain value. I've tried a conditional hide on the item, using
=(ReportItems!NumConfirmed1.Value / ReportItems!NumOffenders1.Value) >= 0.65
and having an Asterisk show in the box by default, but it doesn't show for values above or below the cutoff. What am I missing?
iif(cdbl(ReportItems!NumConfirmed1.Value / ReportItems!NumOffenders1.Value)>=0.65,true,false)

matrix display only first value of a field

i have the below matrix in report builder 3.0:
the field "Market Company Name" could have multiple values, however when i generate the report only the first value is displayed, while it should display each value on a row.
i tried to put it in the row group or column group it will display properly but the position of the field is not where i want it, i want it in this format.
can any one assist??
If the data are displayed correctly when you use row grouping you can set the width of this column to 0. This way you keep the grouping but the column as such will not be visible.