Referring to the image, I would like to repeat the salesagent column after every few rows. How do I do this in SSRS?
Note: My report will have a start and end date parameter for customers to choose. I will be using the date column for pivoting purposes. If a customer chooses to run the report for six months, they will have plenty of date columns so they are requesting to repeat the non-pivoted header column every seven days/column. Is it possible?
Let me know if more information is needed from me.
Related
Note: This is in Tableau CRM, not Tableau Community or Desktop.
I have 5 different datetime columns and need to find the earliest datetime value among them for each record.
Ideally, I'd like to create a transformation that dynamically finds the earliest datetime and populates it in a new column. I could also make do with some sort of filter logic that scans for that datetime (not sure what this would look like, but the purpose here is ultimately to be able to filter records according to the earliest value in those 5 columns).
Thanks for any advice you can offer.
I have a table that has several rows of data for a single ID. I need to compare a datetime field from a row where a column is = "a" AND grab the datetime and compare it to the same column where the second row is = "b". IF the time is different I want to report both of these times.
The report is working with the dates but not with the time.
IE if the dates are the same don't grab the data but of the minutes are different grab the data.
I have created time column but it is not one the table so it is not working. I am guessing that I need to extract the time from the datetime field as well.
Any thoughts or ideas?
I have 2 different datasets. one for current month and another one for previous months data. I want to compare the data under a single SSRS table. The SSRS table has column and row groups. How can I relate it and get a combined report from those datasets. Please help.
If you are not using cumulative data, have you looked at using LookUp?
https://learn.microsoft.com/en-us/sql/reporting-services/report-design/report-builder-functions-lookup-function
I am tasked with creating a report in SSRS that can display data covering anywhere from 1 week up to 52 weeks.
What I am trying to avoid is writing a huge query that will pull all 52 weeks worth of data and have it show on the report, unless the user wants that data to appear.
So if the user wants January 1st - February 1st it will only show 6 columns of data instead of all 52 columns. How would I do something like that?
Easy - you need to use a Matrix.
A grid gives you a fixed number of columns and many rows.
A matrix gives you many columns and many rows.
Try this How to Create SSRS Report with Dynamic Columns
Create column grouping on your tablix, for example you have column WEEK and you are bringing data from 1st Jan to 1st Feb.
Column grouping on column WEEK will generate only 5 columns if you have data for every week.
I have a basic report with a one Dataset and one column group.
When I run the report, the column groups shows all the columns I want to see as expected. However, some of the columns, I need to be merged.
For example, I have these columns that all show up, but need to merge to a single column Visa, then report shows the transaction amounts.
Visa Sign, Visa PIN, Visa Tap
How would I merge these columns and rename the main column to just Visa?
My first approach was the modify the dataset query and change anything the payment type to "Visa", but it turns out I can't use update statements since the raw data is still needed for another report.
Next, I tried using Lookups to find anything with "Visa%" and display the the data, but I still can't get the other columns merged to 1.
Any ideas would be great!