Finding ssrs matrix table coloumn values - ssrs-2008

I have a SSRS matrix table, which generates column dynamically. but i want to add some static coloumn in that report(added manually). but the static columns will have the same value as one of the dynamic column. All i want to do is, find the specific dynamic column (a column name with DynamicColoumn1) and show it in this static column
=IIF(Fields!DynamicColumnData.Value = "DynamicColoumn1",Fields!DynamicColumnDataValue.Value, "")
this works only for the first data in the DynamicColumnData, not working for other values in the DynamicColumnData. Anyone faced similar problem?

Try changing your formula to use the First dataset field only:
=IIF(First(Fields!DynamicColumnData.Value, "DataSet1") = "DynamicColoumn1",First(Fields!DynamicColumnDataValue.Value, "DataSet1"), "")

I did this way
=Sum(IIF(Fields!DynamicColumnData.Value = "DynamicColoumn1",
Fields!DynamicColumnDataValue.Value, 0))
Not sure this is the efficient way of doing, but worked for me.

Related

Function to call the Name of a column in TABLEAU

I have a problem with Tableau.
I have a Dataset with some rows and some columns. I want to write a IFELSE structure where
The IF condition is that the Value of special field(fixed by a row and a column) is equal to the header of a column (it is every time equal to one name(header) of the different columns).
So to summarize: one value is every time equal to the name of a column and to find the column shall be the if-structure
Does someone know if there is a function to call the name (header) of a column? I didn't find it
Here is an small example, in which the Calculated_function choose the right price according to the Barcode. Everything in the first raw, is the header_name of the column below. enter image description here
Best regards
Jonas
You can work like this.
I created a sample dataset as given by you
Step-1: Connected With data in tableau. Clicked all columns having price (4 here), pivoted them so that they look like this..
Step_2: Create calculated_field like this
if [Barcode] = [Barcode_c]
then [Price] END
Step3: Filtered out null values from calculatedField and got a view like this which can be tweaked as per liking.

SSAS 2017 - IF statement in calculated measure with condition from dim table

I am trying to get sum of fact table column based on dimension table column value. ie.
If Dim_Product[Origin]="A"
THEN SUM(Fact_Connectivity[MONITOR_CNT])
ELSE
SUM(Fact_Connectivity[TLA_MONITOR_CNT]).
I am using below formula:
Adoption %:= IF(Dim_Product[Origin]="A",
SUM(Fact_Connectivity[MONITOR_CNT]),
SUM(Fact_Connectivity[TLA_MONITOR_CNT]))
But I couldn't use Dim_Product[Origin] table fields in the formula even though Fact table has relationship with Dim table.
You can't directly use it in a measure, raw, or using related, you will have to wrap it round with something to determine the row context.
So for example,
Measure = IF(MAX('Dim Origin'[Origin]) = "A"
, SUM('Table'[Monitor_cnt])
, SUM('Table'[TLA_Monitior_cnt])
)
So on a row by row basis It will take the MAX value for that row, then apply the function. AS the row will only have one value the logic works.
You could also move this to a calculated column.
Hope that helps

How to reference a column number using its named range?

I'm trying to write code that will automatically filter a column based on certain criteria no matter where that column occurs in the sheet.
I started by creating a named range and referencing that named range. However, I am trying to figure out how I can reference the column number based on the name range as this will vary based on where the column is in the sheet. Particularly, I am trying to fix the arguments within setColumnFilterCriteria which requires the column number.
var spreadsheet = SpreadsheetApp.getActive();
spreadsheet.getRange('AttendeeStatus').activate();
spreadsheet.getRange('AttendeeStatus').createFilter();
spreadsheet.getRange('AttendeeStatus').activate();
var criteria = SpreadsheetApp.newFilterCriteria()
.setHiddenValues(['', 'Attending'])
.build();
spreadsheet.getActiveSheet().getFilter().setColumnFilterCriteria(, criteria);
Currently, this requires me to manually enter the right column - is there anyway to automate this?
try this, it may work.
var columnNo = spreadsheet.getRange('AttendeeStatus').getColumn();

tableau show difference between two calculated columns

Please See Picture of my Tableau Worksheet
I simply want to include a new column that shows the difference between 2017SU and 2016SU. Note that each of those two columns are a running sum.
I've tried doing a secondary table calculation but it does not add a new column.
Here is one solution - more work than you would think it should take, but it makes sense when you think about Tableau views your data. I can't see what the full name of you numeric field starting with Seatc ...
Define three calculated fields:
2016SU Seatc = running_sum(sum(if [Stc Term] = "2016SU" then [Seatc...] end))
2017SU Seatc = running_sum(sum(if [Stc Term] = "2017SU" then [Seatc...] end))
diff = [2017SU Seatc] - [2016SU Seatc]
You'll have to set the partitioning and addressing (aka compute using) on the table calcs appropriately.
Finally, now you can use Measure Names and Measure Values to build a table (or other chart) using these 3 measures

How to calculate cumulative field values in report

I am new to JasperReports and iReport, and I am facing a problem. Before going through the question, first, please take a look at the following image:
So, the main problem is with the cumulative columns. Per say, the "Cumulative Bill" column should show the following values sequentially:
6000.0, 14000.0, 23000.0, 32800.0, 42800.0 and 45800.0
I have no idea how this can be done. I tried creating a new variable, but there is no cumulative type calculations there. Please assist me.
Create variable $V{variableName} with calculation = Sum and Variable expression = $F{BillAmountField} and put text field with this variable into detail section.
Is it so hard? :)
It can be done at the query level, here is the query :-
SELECT m.bill_amount,
#cbill:=#cbill+ifNull( m.bill_amount,0) cumulative_bill
FROM (
SELECT #cbill:=0,
bill_amount
FROM
)m