RDLC : How to add rowspan - rdlc

Now I can add colspan with Merge Cell command.
But I can't find the way to add rowspan.
Could anybody help me please.

Related

Edit tables in the footer of word document

i need to make a program to edit some tables in the footer of a word document. I read something about tables in word : Can we access a word table by it's name and not index using vba?
But my problem is i have several tables in my footer, and i cant add bookmark because it depends on how many sheets will have my .docx
Here what is look like my footer :
Do you have any idea how can i do it ?
Thanks
Thanks to #Timothy Rylatt, it's gonna be help me a lot !
You would do better to construct a template that contains the standard elements you need, such as headers and footers. If you use DocVariable or DocProperty fields to display data in the footer you don't need to access the footer at all. Just update the value of the property or document variable then update the fields. –

How to set minimum row-height of a cell in combination with setting Rows.AutoFit() in Excel using vsto?

I would like to know is it possible to set the minimum row height of all cells in a row and if the value overflows that row-height then use autofit(). So, i wanted to use both both options in combination using vsto, Excel-2013.
Please let me know your suggestions.
Thanks,
One of the ways to resolve the above problem:
ExcelRange.Rows.AutoFit();
if (ExcelRange.Rows.Height < some_number1)
{
workingRange.Rows.RowHeight = some_number2;
}

Can we add Cell border for every row data in Excel writer or Excel output in Pentaho?

I am working on Pentaho data integration and I am appending data into an excel sheet. Data is appending into the excel sheet perfectly but I need to provide the border for every cell. Is there anyway anybody can suggest me?
You can make use of Template feature of Microsoft Excel Output and Writer Steps.
1. Create a template with a cell having a border as per your requirement:
2. Use Microsoft Excel Writer step to define the template:
Make sure to make use of "write to existing sheet" in Excel.
3. In the field section of the Step, make sure to add the style Cell number. In my case it was D2 cell. This will read the data and add border to your data set.
Hope this helps :)
Final Output:

SlickGrid row selection not highlighting all columns

I'm using slickGrid and I'm having a problem with the row selection model.
I have a page with 3 grids - with values returned from 3 different queries.
When I click on a row in 2 of the sections, the row highlights fine - however, in one of the sections when I click a row then the first column isn't highlighted.
I played around by adding additional columns and found that in all 3 sections it doesn't highlight some columns.
I can't find how to solve this, nor do I know how to even make a work around - e.g. hightlight the row myself.
Has anyone come across this or can tell me how to highlight a row manually please?
Cheers.
You could add the following to your css file:
.slick-cell.selected {
background-color: #FFFFCC;
}

VBA (Excel 2007) how can I detect fill format of SeriesCollection?

how can I detect fill format of SeriesCollection?
I know how to change it to solid > ActiveChart.SeriesCollection(1).Fill.Solid
and I know how to change it to Gradient > ActiveChart.SeriesCollection(1).Fill.TwoColorGradient Style:=msoGradientHorizontal, Variant:=1
But I dont know how to detect the current fill format...
Can you help me please?
Thank you.
you can test:
if ActiveChart.SeriesCollection(1).Fill.GradientColorType = msoGradientTwoColors then
'your code
you can see the properties of an object in the debugger (i had some troubles finding this one in the help). In this particular case, i was spying: ActiveChart.SeriesCollection(1). Then, you can expand the properties to find which one apply to your case.