Forum Discussion

RehaanAbdulla's avatar
RehaanAbdulla
New Contributor III
9 months ago

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

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?

Regards

 

  • 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

  • jwagner's avatar
    jwagner
    New Contributor III

    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

    • RehaanAbdulla's avatar
      RehaanAbdulla
      New Contributor III

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