SSRS Report Query - ssrs-2008

Is it possible to insert a clickable + sign in an SSRS report column header? If "yes," then, on clicking that operator, I would like to display other columns which have been hidden by default. For example, as shown in the attached screen shot, to display columns 'AP' and 'CR' when sign + of column 'U' is clicked.

Yes, you can hide a column and toggle the Visibility based on another column header.
Right Click on the column you want to hide (where the Red Dot is) and go to the Visibility property.
Click on the Hide radio button so the column is Hidden when the report is run.
Check the Display can be Toggled box and choose the name of your U column.
Resulting table:

Related

Separate row selection from row checkbox selection?

Does ag-grid support separating row selection from checked checkboxes?
My users need to select a row (click on it, or keyboard nav) to see further details about the row. Then they need to check the checkbox (or not) to select the row for later export to Excel.
So for example, they'll click every row to see the further details, but only check some of the checkboxes for later export. Is this supported?
If not, what would be a good approach to implement? Add my own checkboxes to the first column?
You can set suppressRowClickSelection to true when you want checkbox selection, and don't want to also select when the row is clicked. If true, rows won't be selected when clicked.
You can read more about this here - https://www.ag-grid.com/javascript-grid-selection/
You can use ag-Grids selection capabilities for the checkbox selection and then use the onRowClicked prop to do a different select on row click. I'm doing just this (but with onRowDoubleClicked.
You still want to set suppressRowClickSelection to true.

Change the display name of a calculation in Tableau

How can the display nam of a computed field be customized? Note the entire calculation is being displayed as the field label in the tooltip :
When attempting to customize that calculated field there is no apparent way to change the display name:
Update Here is the set of dimensions and measures: notice the last dimension on the rows is the calculated field. That is what I am unable to discover how to name/alias/..
Right click the calculation and select Edit in Shelf. Move your cursor to the first character and press Shift+Enter to add a new line above your calculation. On this blank line, add the alias in the form of a comment, e.g. //AverageScore.
Note that making changes to the field can sometimes undo this and it will need to be reapplied.
You need to create it as a calculated field. It could be that it is a calculation in the "Shelf" in the way you have displayed it. You would need to go to your list of fields displayed on the left, right click and click "Create", and then copy your formula into that, and be sure to name it what you want and then save it. Then it will show up as a field in the list of fields on the left.

ssrs 2008 hide tablix single column visibility false

Currently working with sql ssrs2008,
to set tablix single column visibility false,
Normally when I click on tablix header called "mrp", column visibility is in inactive mode so I am unable to click on it.
Otherwise, I clicked on tablix column header "MRP" and did changes in property called "hidden" as "=Parameters!ShowSummary.Value=True", but when I view the reports it show blank column with no data,
I need to hide that column so on screen or when I export output to Excel it should not show the blank column (white space)
You are currently seeing a blank column due to the tablix borders, they are probably black or some non-white color.
You should refere the following solution at:
http://social.msdn.microsoft.com/Forums/eu/sqlreportingservices/thread/3f76a2a6-053a-4da4-8995-5e39f9571c65

How to populate the value of a Text Box based on the value in a Combo Box in MS Access 2007?

I have a combo box which is of a lookup type, i.e., I've selected the source to be a column from a table and am storing the selected value in another table. The table which I am looking up has another column and I need the value in this column to be displayed in a text box and each time I change the value in the combo box, I need the corresponding value to be displayed in the text box. How can I do this? What I have done so far is to write a Select query that selects the appropriate column based on the combo box's value. Is there a more decent way of doing this? Please help me!
Make the source of the combo box to your 2 fields e.g. SELECT id, name FROM Customers
Make sure you set the Column Count property of the combo to 2, accordingly.
Then make you unbound text box source equal to =MyCombo.Column(1) (from memory, this Column is zero based).
That's it, zero code required.
It's nicer to use an event of the combo box e.g. onChange, so when a selection is made the event sets the value of the text box.
me!txtTextBox1 = me!cboComboBox1.column(1)
That way it will work everytime.
You could also use a button with onClick etc. but the choice is yours (and as mentioned in the previous post, alter the column number based on its row source with 0 being the first.
After reading the question and answers I tried the following, and it seems to work well (so far):
In order to display more than one column of a combobox selection, I have resorted to the following:
Place a textbox over the combobox,
Size it by sampling other fields, so that it covers the text frame of the combobox.
I have purposely have left a small space to the right of the NEW textbox to indicate that it
Is NOT part of the combobox.
In the Control Source for the textbox enter the expression below:
=[DefaultAcct].[Column](1) & " " & [DefaultAcct].[Column](2)
Then, in the ‘onchange’ event of the combobox, set focus to the textbox.
Private Sub DefaultAcct_Change()
txtConcatenate1.SetFocus
End Sub

Fetch Cross-tab grandtotal?

I have a cross tab inside a subreport. I need to fetch the grandtotal of cross tab and display it in a textobject under the cross tab. Any clue how this can be achieved ?
Drag and drop the database or formula field you want into the detail section of the report. (Remove any unwanted guidelines / column headings that this generates.)
Right-click the inserted detail section item and select Insert > Summary... . Specify Sum, to be inserted in the same section as the datagrid is located. (Remove the detail section item, if you don't want it in the detail section.)
The total field can be dragged and dropped into position under the data grid. If you specifically want it in a text field, then insert a blank text field into the report under the data grid and then drag and drop the total field into it.
Do you have any criteria or special formula in the crosstab? If not, then you could probably just make a new formula sum({table.field}) and put it wherever you like.
(If this subreport is grouped, you may want to use sum({table.field},{table.group}))