Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Archived » BIRT » Use computed column to concatenate data set data
Use computed column to concatenate data set data [message #872826] Wed, 16 May 2012 22:30 Go to next message
Neil Wang is currently offline Neil WangFriend
Messages: 105
Registered: July 2009
Senior Member
Hi,

I am trying to create a string which is a concatenation of all the data in a data set.
For example, I have a data set "row[FirstName]" and it has data of "John", "Alice" and "Mary". I would like to create a string which is "John, Alice, Mary" (with comma in between data).

I am thinking about using computed column function in data set to achieve this but don't know how to grab each data from the data set.

please advise.

Neil
Re: Use computed column to concatenate data set data [message #873026 is a reply to message #872826] Thu, 17 May 2012 10:52 Go to previous messageGo to next message
Tomas Greif is currently offline Tomas GreifFriend
Messages: 53
Registered: September 2010
Member
Hi,

you can use "CONCATENATE" as agregation function. Create new computed column with row[FirstName] as Expression, in Aggregation choose "CONCATENATE" and type "," as Separator.

Tomas
Re: Use computed column to concatenate data set data [message #873188 is a reply to message #872826] Thu, 17 May 2012 16:42 Go to previous messageGo to next message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

Neil

Use the concatenate aggregate function with an aggregation element.
Look at the attached example.

Jason

On 5/16/2012 6:30 PM, Neil Wang wrote:
> Hi,
>
> I am trying to create a string which is a concatenation of all the data
> in a data set.
> For example, I have a data set "row[FirstName]" and it has data of
> "John", "Alice" and "Mary". I would like to create a string which is
> "John, Alice, Mary" (with comma in between data).
>
> I am thinking about using computed column function in data set to
> achieve this but don't know how to grab each data from the data set.
>
> please advise.
>
> Neil
Re: Use computed column to concatenate data set data [message #873191 is a reply to message #872826] Thu, 17 May 2012 16:42 Go to previous messageGo to next message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

Neil

Use the concatenate aggregate function with an aggregation element.
Look at the attached example.

Jason

On 5/16/2012 6:30 PM, Neil Wang wrote:
> Hi,
>
> I am trying to create a string which is a concatenation of all the data
> in a data set.
> For example, I have a data set "row[FirstName]" and it has data of
> "John", "Alice" and "Mary". I would like to create a string which is
> "John, Alice, Mary" (with comma in between data).
>
> I am thinking about using computed column function in data set to
> achieve this but don't know how to grab each data from the data set.
>
> please advise.
>
> Neil
Re: Use computed column to concatenate data set data [message #873193 is a reply to message #872826] Thu, 17 May 2012 16:42 Go to previous messageGo to next message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

Neil

Use the concatenate aggregate function with an aggregation element.
Look at the attached example.

Jason

On 5/16/2012 6:30 PM, Neil Wang wrote:
> Hi,
>
> I am trying to create a string which is a concatenation of all the data
> in a data set.
> For example, I have a data set "row[FirstName]" and it has data of
> "John", "Alice" and "Mary". I would like to create a string which is
> "John, Alice, Mary" (with comma in between data).
>
> I am thinking about using computed column function in data set to
> achieve this but don't know how to grab each data from the data set.
>
> please advise.
>
> Neil
Re: Use computed column to concatenate data set data [message #873194 is a reply to message #873026] Thu, 17 May 2012 16:43 Go to previous messageGo to next message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

Sorry Tomas, I did not see that you had replied.

Jason

On 5/17/2012 6:52 AM, Tomas Greif wrote:
> Hi,
>
> you can use "CONCATENATE" as agregation function. Create new computed
> column with row[FirstName] as Expression, in Aggregation choose
> "CONCATENATE" and type "," as Separator.
> Tomas
Re: Use computed column to concatenate data set data [message #873654 is a reply to message #873026] Fri, 18 May 2012 19:14 Go to previous messageGo to next message
Neil Wang is currently offline Neil WangFriend
Messages: 105
Registered: July 2009
Senior Member
Hi Thomas,

Thank you for your comment and it works.

I have another question.

I have a data set with this information

Child data set
Key|Value|ID|Concatenation
AAA|BBBBB|01|AAABBBBB, CCCDDDDD
CCC|DDDDD|01|AAABBBBB, CCCDDDDD

The goal of the concatenation is to concatenate all key and value columns into one string which works fine.

I have another data set like this

Parent data set
Name|ID
Bill|01

I need to create a join data set with ID as the join key and the result looks like

Parent:Name|Parent:ID|Child:Key|Child:Value|Child:ID|Child:Concatenation
Bill| 01| AAA| BBBBB| 01| AAABBBBB, CCCDDDDD
Bill| 01| CCC| DDDDD| 01| AAABBBBB, CCCDDDDD

However, I would like to have the result to look like
Parent:Name|Parent:ID|Child:Key|Child:Value|Child:ID|Child:Concatenation
Bill| 01| AAA| BBBBB| 01| AAABBBBB, CCCDDDDD

I am not gonna display Child:Key and Child:Value in my report; therefore, I don't mind having/not having them in the final result set. The whole purpose is to have one parent to have its "Key + Value" concatenated in one string; therefore, having two rows defeats the purpose as I put them in the detailed row of a table, both rows will show up. I am thinking I should keep just one row in the child result set; so that, the final result set will have one row only; however, I am not sure how to do it. Please advise.

Neil
Re: Use computed column to concatenate data set data [message #876073 is a reply to message #873654] Wed, 23 May 2012 21:11 Go to previous messageGo to next message
Jason Weathersby is currently offline Jason WeathersbyFriend
Messages: 9167
Registered: July 2009
Senior Member

Neil

Did you get this to work?

Jason

On 5/18/2012 3:14 PM, Neil Wang wrote:
> Hi Thomas,
>
> Thank you for your comment and it works.
>
> I have another question.
>
> I have a data set with this information
>
> Child data set
> Key|Value|ID|Concatenation
> AAA|BBBBB|01|AAABBBBB, CCCDDDDD
> CCC|DDDDD|01|AAABBBBB, CCCDDDDD
>
> The goal of the concatenation is to concatenate all key and value
> columns into one string which works fine.
> I have another data set like this
>
> Parent data set
> Name|ID
> Bill|01
>
> I need to create a join data set with ID as the join key and the result
> looks like
>
> Parent:Name|Parent:ID|Child:Key|Child:Value|Child:ID|Child:Concatenation
> Bill| 01| AAA| BBBBB| 01| AAABBBBB, CCCDDDDD
> Bill| 01| CCC| DDDDD| 01| AAABBBBB, CCCDDDDD
>
> However, I would like to have the result to look like
> Parent:Name|Parent:ID|Child:Key|Child:Value|Child:ID|Child:Concatenation
> Bill| 01| AAA| BBBBB| 01| AAABBBBB, CCCDDDDD
>
> I am not gonna display Child:Key and Child:Value in my report;
> therefore, I don't mind having/not having them in the final result set.
> The whole purpose is to have one parent to have its "Key + Value"
> concatenated in one string; therefore, having two rows defeats the
> purpose as I put them in the detailed row of a table, both rows will
> show up. I am thinking I should keep just one row in the child result
> set; so that, the final result set will have one row only; however, I am
> not sure how to do it. Please advise.
>
> Neil
>
Re: Use computed column to concatenate data set data [message #876274 is a reply to message #873654] Thu, 24 May 2012 09:37 Go to previous messageGo to next message
Tomas Greif is currently offline Tomas GreifFriend
Messages: 53
Registered: September 2010
Member
Hi Neil,

I think you can do the following:

- add new computed column to the child dataset. Use aggregation "IS-TOP-N", in expression enter row["concatenation"], in N enter 1. This will return true only for one row. You can name the column like "test"
- add filter to the child dataset. Add condition that "test" column equals to "true"

Anyway I would suggest to do the data pre-processing in database if possible.

Tomas
Re: Use computed column to concatenate data set data [message #1827648 is a reply to message #873026] Tue, 19 May 2020 23:09 Go to previous message
Onochie Ojekwe is currently offline Onochie OjekweFriend
Messages: 3
Registered: May 2020
Junior Member
If this result string is needed ""John, Alice and Mary", how can this be done?
Previous Topic:Show Windows Current User in BIRT Report on TOMCAT Server
Next Topic:BIRT - 4.9 release
Goto Forum:
  


Current Time: Wed Apr 24 23:34:09 GMT 2024

Powered by FUDForum. Page generated in 0.03741 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top