Focal Point Banner


As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.

Join the TIBCO Community
TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.

  • From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
  • Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
  • Request access to the private WebFOCUS User Group (login required) to network with fellow members.

Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [CLOSED] remove underline from hyperlink in WF8008 and EXL2K format

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[CLOSED] remove underline from hyperlink in WF8008 and EXL2K format
 Login/Join
 
Platinum Member
posted
I would like to remove the underline comes with hyperlink (Drilldown).

Tried STYLE=-UNDERLINE - it works in xlsx format but not in EXL2K format.

HYPERLINK-COLOR seems an option in latest version only.

Update: We did upgrade to 8206 but this issue still exists. Now XLSX format works but drilldown in xlsx is not working.

EXL2K - Drilldown works but not able to remove underline on the hyperlink.

XLSX - Removed the underline on the hyperlink but drilldown not works.

I want to do this only in EXL2K format. Any suggestions or thoughts.

Thanks

This message has been edited. Last edited by: FP Mod Chuck,


8.2.06
Windows, All Formats
 
Posts: 184 | Registered: December 27, 2013Report This Post
Master
posted Hide Post
You can always do with an auto open macro. Just curious, why .xls and not xlsx?


In FOCUS since 1985. Prod WF 8.0.08 (z90/Suse Linux) DB (Oracle 11g), Self Serv, Report Caster, WebServer Intel/Linux.
 
Posts: 975 | Location: Oklahoma City | Registered: October 27, 2006Report This Post
Expert
posted Hide Post
OR, You branch accordingly:
  
ON TABLE SET STYLE *
UNITS=IN, PAGESIZE='LETTER', LEFTMARGIN=0.500000, RIGHTMARGIN=0.500000, TOPMARGIN=0.250000,
 BOTTOMMARGIN=0.500000, SQUEEZE=ON, ORIENTATION=LANDSCAPE,$

-IF &OUTPUT EQ 'PDF'   GOTO PDF_OUT   ELSE
-IF &OUTPUT EQ 'EXL2K' GOTO EXL2K_OUT ELSE
-IF &OUTPUT EQ 'EXL07' GOTO EXL07_OUT ELSE
-IF &OUTPUT EQ 'HTML'  GOTO HTML_OUT  ELSE
-IF &OUTPUT EQ 'AHTML' GOTO AHTML_OUT ELSE
- GOTO END_STYLE;

-PDF_OUT
-* PDF Styling
-*----------------------------------------------------------------
-*                            Heading Images
-*----------------------------------------------------------------
-*----------------------------------------------------------------
TYPE=HEADING ,IMAGE=&IMGNAME, SIZE=(&WID &HT), POSITION= (&HPOS1 &HPOS2), $
-* ---------------------------------------------------------------
more stuff
-GOTO END_STYLE

HTML_OUT
-****************************************************************************************************************************************************
TYPE=HEADING ,IMAGE=&IMGNAME, SIZE=(&WID &HT), POSITION= (0 0), $
more stuff
-GOTO END_STYLE

-EXL2K_OUT

TYPE=HEADING, STYLE=BOLD,HEADALIGN=BODY,$
TYPE=TITLE, STYLE=BOLD, JUSTIFY=CENTER,$
more stuff
-GOTO END_STYLE

-END_STYLE
ENDSTYLE
END

ETC....


Tom Flynn
WebFOCUS 8.1.05 - PROD/QA
DB2 - AS400 - Mainframe
 
Posts: 1972 | Location: Centennial, CO | Registered: January 31, 2006Report This Post
Platinum Member
posted Hide Post
I am running Compound FML report and when I try XLSX, it didn't give me any output.

I will try that again.


8.2.06
Windows, All Formats
 
Posts: 184 | Registered: December 27, 2013Report This Post
Expert
posted Hide Post
Just curious if "it didn't give me any output" is related to the error as discussed in This Post
 
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005Report This Post
Expert
posted Hide Post
quote:
-IF &OUTPUT EQ 'PDF' GOTO PDF_OUT ELSE
-IF &OUTPUT EQ 'EXL2K' GOTO EXL2K_OUT ELSE
-IF &OUTPUT EQ 'EXL07' GOTO EXL07_OUT ELSE
-IF &OUTPUT EQ 'HTML' GOTO HTML_OUT ELSE
-IF &OUTPUT EQ 'AHTML' GOTO AHTML_OUT ELSE
- GOTO END_STYLE;

@Tom,

I see that you are still on 7.7.05?

One thing you might want to consider is changing the "GOTO" to "THEN GOTO" which is documented syntax and gets tightened going forward (about 8.1.05 I think?).


T



In FOCUS
since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2  
WebFOCUS App Studio 8.2.06 standalone on Windows 10 
 
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004Report This Post
Expert
posted Hide Post
A minor tangent...

quote:
-IF &OUTPUT EQ 'PDF'   GOTO PDF_OUT   ELSE
-IF &OUTPUT EQ 'EXL2K' GOTO EXL2K_OUT ELSE
-IF &OUTPUT EQ 'EXL07' GOTO EXL07_OUT ELSE
-IF &OUTPUT EQ 'HTML'  GOTO HTML_OUT  ELSE
-IF &OUTPUT EQ 'AHTML' GOTO AHTML_OUT ELSE
- GOTO END_STYLE;


How about using one of these two options?
1) You could, as I do, use the following code if you're sure that all the values of &OUTPUT have associated labels:
-GOTO &OUTPUT.EVAL

2) Or use this if they don't:
-IF &OUTPUT.EVAL IN ('PDF','EXL2K','EXL07','HTML','AHTML') THEN GOTO &OUTPUT.EVAL ELSE GOTO NO_STYLE ;

-EXL2K
-TYPE *** Appling styles for &OUTPUT
-GOTO END_STYLE

-AHTML
-TYPE *** Appling styles for &OUTPUT
-GOTO END_STYLE

-NO_STYLE
-TYPE *** I can't style for &OUTPUT.EVAL.
-GOTO TheEnd

-END_STYLE
-TYPE *** I applied the style for &OUTPUT.EVAL.
-GOTO TheEnd

-TheEnd
instead of all those IFs.

This message has been edited. Last edited by: Doug,
 
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005Report This Post
Platinum Member
posted Hide Post
quote:
Update: We did upgrade to 8206 but this issue still exists. Now XLSX format works but drilldown in xlsx is not working.

EXL2K - Drilldown works but not able to remove underline on the hyperlink.

XLSX - Removed the underline on the hyperlink but drilldown not works.

This message has been edited. Last edited by: WFDevConsultant,


8.2.06
Windows, All Formats
 
Posts: 184 | Registered: December 27, 2013Report This Post
Master
posted Hide Post
Just to clarify, are you saying that you would like the hyperlink (drill down) in the .xls (EXL2K) file to still be a hyperlink, but just not LOOK like a hyperlink?


Hallway

 
Prod: 8202M1
Test: 8202M4
Repository:
 
OS:
 
Outputs:
 
 
 
 
 
Posts: 608 | Location: Salt Lake City, UT, USA | Registered: November 18, 2015Report This Post
Platinum Member
posted Hide Post
I want the drilldown but don't want the underline on the data.

Either xlsx or exl2k is okay but I want it to work.


8.2.06
Windows, All Formats
 
Posts: 184 | Registered: December 27, 2013Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [CLOSED] remove underline from hyperlink in WF8008 and EXL2K format

Copyright © 1996-2020 Information Builders