Set font as bold for rownumbers in rdl(SSRS) - ssrs-tablix

We have a rdl file in our application where we use it for reporting purpose. Currently, there is a requirement to make particular rownumbers in the tablix to be in Bold format.
We did accomplish this for one row, but we have to do it for a couple of rownumbers.
Please see how we are doing this for rownumber :
=iif(RowNumber(nothing) mod 13=0,"Bold","Normal")
The above code makes rownumber 13 to be bold and we need other rownumbers to be bold as well. How can we achieve this?

Below expression worked :
=iif(RowNumber(nothing) mod 14=0,"Bold",iif(RowNumber(nothing) mod 13=0,"Bold","Normal"))

Related

How to get 15 columns in Bootstrap 4 in SASS CSS?

I have a layout design clearly made for 1200px / 15 cols framework, but my client wants to use Bootstrap 4 with SASS only. Is it even possible to transform Bootstrap into 15 cols layout? I haven't seen such an example online. I'm not a huge fan of Bootstrap for small projects. It is a trend I honestly don't understand. Might be too heavy for a 5 pages website & projects are usually done according to the content, not according to some framework, Twitter-backed or not.
But, this is it.
If it would be possible to code a 15 cols layout, could you give me a hint on how to begin? And how long would it take to perform such an adaptation?
You can just recompile bootstrap 4 with the proper settings.
The documentation at: https://v4-alpha.getbootstrap.com/layout/grid/#customizing-the-grid should explain it, but since it is a temporary link I'll include it here.
First you should be able to build the SASS into CSS, but overall you just have to set the variable for how many columns before including the bootstrap file to be built, or modify the variable.scss file and change the value of $grid-columns value like so:
$grid-columns: 15;
That is the starting point, you may have to adjust other grid variables to control the total width and gutter between each column etc.
You just need to change the $grid-columns variable using SASS.
$grid-columns: 15;
You may also want to check out other variables like $grid-gutter-width to decrease the spacing between columns since you're using more columns.
Working Demo
Also see:
creating custom grid number for bootstrap - Bootstrap

How to get all labels used in a Report design?

I'm beginner for the report.
=Labels!#SYS7407 // I need to get this
I want to get all labels used in Expression Design report.
I need to export all Labels used
It's possible to extract in a CSV file, with a JOB?
Or, if exist a functionally in Visual Studio to get all labels in my report.
Thansk all,
enjoy!

use a MS Word and MS Excel's cell from the ckeditor

I'm use ckeditor.
I do not speak English because Koreans..Please understand !
I like to use a word and excel's cell from the ckeditor
Please see below
1) test Excel and Word..
http://i58.tinypic.com/f9ebs8.jpg
2) result (Copy the cell to ckeditor)
http://i57.tinypic.com/28v6ah2.jpg
Why is the status of excel?
cell's Attribute is not copy..
please Answer.
Thank you.

BIRT - expression builder: HTML Table + Dataset field does not evaluate

I am new to BIRT and its awesome but I am unable to make a bullet point list where each bullet point is a field from my dataset. Without using any html the datasetfield evaluates but as soon as I add an html tag it will simply show the name of the field.
This
<ul>
<li><value-of> row["SRRI"] </value-of></li>
</ul>
Shows:
row["SRRI"]
But I want it to show the value of row["SRRI"] instead. (Omitting "" does not change the output for me)
I was searching for a solution for a few hours now and I guess its fairly simple but I cannot find a solution on how to tell BIRT that this is not a string.
It sounds like you have a list, and you want to lead each entry with a bullet point. In your report design, you can put a cell in front of your row["SRRI"] value and put what ever bullet image you want there.

Displaying a text on the last page of crystal report?

This might be a very naive question but i am not able to get to it.
I have a simple text object that i wish to display only on the last page of the report after all my details section and group footer sections are displayed.
I have tried applying Suppress property on page footer to work, but it does not happen. Then i tried suppressing the text object but that did not work as well.
This is what i pushed into formula field:
if PageNumber = TotalPageCount then
false
else
true
Am i missing something.
Any help will be highly appreciated.
Thanks in advance.
Try putting your text object in the Report Footer section.
you will required to use Report Footer. please follow a link. if this is the answer to your question mark the answer.
Link:.
http://publib.boulder.ibm.com/infocenter/iadthelp/v6r0/index.jsp?topic=/com.businessobjects.integration.eclipse.doc.crdesigner/reportdesigner/crconreportfooter.htm
Create a section below the last group and place your text field there so that when ever everything is displayed you will get the required text
E.g:
If you have Group1 and Group2 then create a section in group footer of Group1 using "Insert Section below and place the Text field there.
Resolved...!!! The problem was that in the Format Text dialog box, after writing the formula i had checked the Suppress Check Box because of which the Text Object was Suppressed all the time. Thanks for all your help...!!

Resources