Hi,
I am not sure whether you understand the issue correctly.
Data is displaying correctly like below without hyperlink:
Country | Amt |
C1 | 500 |
C2 | 1000 |
Issue is, when I try to create the hyperlink on Country column (passing Country value using country object and 2 Codes using Code_key detail object) then data is changing like below:
Country | Amt |
C1 | 200 |
C1 | 300 |
C2 | 450 |
C2 | 550 |
Actually above data is at code level like below,
Country | Code_key | Amt |
C1 | 10 | 200 |
C1 | 20 | 300 |
C2 | 10 | 450 |
C2 | 20 | 550 |
but as mentioned I am expecting same table without Code_Key like below and with Hyperlink on Country column
Country | Amt |
C1 | 500 |
C2 | 1000 |
I am not sure why this issue is occurring when I pass the codes using Code_key detail object.
FYI, if I pass the one code_key using userresponse() like below then it is displaying correctly,
if(Userresponse("Code")="abc";"10";if(Userresponse("Code")="xyz";"20";"10;20")
but scenario is, user can select multiple Codes in main report and detail report restrict accordingly
BO version: BI4.1 SP4
Hope you understand the issue now... appreciate your help
Thank you,