Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 15 Oracle Analytics Lounge
- 208 Oracle Analytics News
- 41 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 76 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Pivot Table in RTF - BI Report

Hello
I have pivot table report and that works fine. I have to add a url (in another xml tag) to be hyperlink of the across field of the pivot. I tried following but it doesn't work. Perhaps the standard tags/code generated by pivot wizard uses different references. How can I achieve this?
Code: <fo:basic-link color="blue" external-destination="{URL}">
This code work fine if I create pivot with manual code (without wizard) but I am not able to get horizontal sub-total (for each group) and the big number also gets displayed in incorrect format i.e. 1.9412187780000005E7
Thank you.
Answers
-
try this and search in Forums, I have suggested it earlier.
<?if@inlines: <column>!='N/A'?>
<fo:basic-link external-destination="{.//<column>}" color="blue" text-decoration="underline">
<column description>
</fo:basic-link>
<?end if?>
1 -
Thanks @SantoshKumarBhairi !
Getting error, can you please help me to fix this?
<?if@inlines: ./M1>!='N/A'?>
<fo:basic-link external-destination="{.//URL}" color="blue" text-decoration="underline">
<?./M1?>
</fo:basic-link>
<?end if?>
0 -
Dear @SantoshKumarBhairi
I am still unable to achieve. Could you please help?
<?if@inlines: ./M1 >0?>
<fo:basic-link external-destination="{.//URL}" color="blue" text-decoration="underline">
<?./M1?>
</fo:basic-link>
<?end if?>
I have a numeric field and want to substitute url in the sql as a link on that numeric field.
Thank you.
0