BusinessObjects Board

#MULTIVALUE Issues

Hello! I am new here, so hopefully I have put my question in the proper spot and what I’m asking makes sense.

I have a report that was created using queries from two universes (merging on an identifying number) because I needed to pull in a column of information that was not available in one of the universes. This column provides details per identifying number such as apple, orange, lime, grape, etc. I’m running into an issue when the identifying numbers have two or more of the fruits listed. Is there a way to show all of the fruits associated with the identifying number instead of #MULTIVALUE? I did try using the “Avoid duplicate row aggregation” but I’m including spend totals in this report and I want those aggregated, not a row for each invoice amount.

Thank you for any help you can provide!


volleyballtigger4 (BOB member since 2018-05-30)

In your universe, try to make your Fruit Column “Detail” and connect to the Identifying Number. You may create a new object.

Pull in that “Detail” Fruit Column in your report.

give it a try and let me know if that works.

Thanks


bonotatsujin :taiwan: (BOB member since 2017-12-20)

A detail item expects a 1:1 relationship with its owning dimension so your solution would not be appropriate.

OP, you are creating your own fan trap with this
=Max([Invoice Amount]) in ([ID Number]) would get you the invoice amount for each ID.

Another option would be to equally apportion the invoice amount across the number of fruit in a given ID, along the lines of:
=[Invoice Amount]/Count([Fruit Name]) in ([ID Number])

If you had £1,200 for an ID and three fruit, the first would show £1,200 for each but total correctly, while the second formula would show £400 per row and total correctly. Your solution should be driven by the display requirement.

Thanks for your comments, Mark P.

I also learned new function from your reply.

:smiley:


bonotatsujin :taiwan: (BOB member since 2017-12-20)

Thank you, Mark P.

I appreciate the assistance!!!


volleyballtigger4 (BOB member since 2018-05-30)