Databand multiple rows

Stimulsoft Reports.NET discussion
Post Reply
Stephan1
Posts: 122
Joined: Fri Aug 31, 2007 7:22 am
Location: Germany

Databand multiple rows

Post by Stephan1 »

Hi,

i got a Datatable which contains serialnumbers.

The Datatable ist printed in a Databand.

Example:

Databand (Serials)
SN: ABCDEFG
SN: jkdfjlasjdkl2343
SN: 20394234asd
SN: kldjkjdfFASD"
SN: akldfjaskd121234

My question is, is it possible to print the Serials Databand in a horizontal way?. Otherwise i could have a page full of serials.

This should be the Outpunt if possible: The serials could have differente length of chars. So sometimes 3 fit in a row sometimes 4.

Databand (Serials)
SN: ABCDEFG, SN: jkdfjlasjdkl2343, SN: 20394234asd
SN: kldjkjdfFAS, SN: akldfjaskd121234

It's just to safe space on the page.

Thx for helping.






Alex K.
Posts: 6488
Joined: Thu Jul 29, 2010 2:37 am

Databand multiple rows

Post by Alex K. »

Hello,

As a way you can use the Func.EngineHelper.JoinColumnContent() function:

Code: Select all

{Func.EngineHelper.JoinColumnContent(DatatableName, "ColumnName", ", SN: ")}
Thank you.
Attachments
1910.SampleReport.mrt
(14.75 KiB) Downloaded 350 times
Stephan1
Posts: 122
Joined: Fri Aug 31, 2007 7:22 am
Location: Germany

Databand multiple rows

Post by Stephan1 »

Aleksey wrote:Hello,

As a way you can use the Func.EngineHelper.JoinColumnContent() function:

Code: Select all

{Func.EngineHelper.JoinColumnContent(DatatableName, "ColumnName", ", SN: ")}
Thank you.
Thx Aleksey for that Info.

At which Version is "Func.EngineHelper.JoinColumnContent" available ?

I tried using your Sample Project, but here we're using a Version of 2011.2.1020.

Thx
Alex K.
Posts: 6488
Joined: Thu Jul 29, 2010 2:37 am

Databand multiple rows

Post by Alex K. »

Hello,

This function was been added in last release. Please check the last prerelease build.

Thank you.
Post Reply