How to add base member accounts in a member filter in a cube view

RehaanAbdulla
New Contributor II

Hi 

I need to add two base member accounts in the member filter of a cube view. Would this be the correct syntax: A#Account1, A#Account2. Or do you need to add a plus sign between them?

RehaanAbdulla_0-1712585576263.png

Regards

 

1 ACCEPTED SOLUTION

jwagner
New Contributor II

Are you trying to sum up the two members or just have them both display in the cv?  
If you are trying to add them together: GetDataCell(A#Account1 + A#Account2)

For Display Purposes:  A#Account1, A#Account2

View solution in original post

3 REPLIES 3

RobbSalzmann
Valued Contributor

Yes, this is correct.,  It looks like this in the report:

 

RobbSalzmann_1-1712590827362.png

 

jwagner
New Contributor II

Are you trying to sum up the two members or just have them both display in the cv?  
If you are trying to add them together: GetDataCell(A#Account1 + A#Account2)

For Display Purposes:  A#Account1, A#Account2

I was looking for display purposes but thank you for showing the way to add them up as well