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.
How can I remove the bar for one field in FML report?
In the below example, how can I remove the bar only for the Period column?
DEFINE FILE CAR PERIOD/A20=IF CAR EQ 'AUDI' THEN '12/31/11' ELSE IF CAR EQ 'BMW' THEN '1/1/12 - 12/31/12' ELSE IF CAR EQ 'DATSUN' THEN '12/31/12' ELSE IF CAR EQ 'JAGUAR' THEN '12/31/12' ELSE IF CAR EQ 'JENSEN' THEN '1/1/12 - 12/31/12' ELSE IF CAR EQ 'MASERATI' THEN '1/1/12 - 12/31/12' ELSE IF CAR EQ 'TOYOTA' THEN '12/31/12' ELSE ''; END
TABLE FILE CAR SUM PERIOD DEALER_COST RETAIL_COST FOR CAR AUDI AS 'PENDING' OVER BMW AS 'NEW' OVER BAR OVER JAGUAR AS 'NET' OVER BAR AS '=' OVER JENSEN AS 'NOT VALID' WHERE CAR EQ 'AUDI' OR 'BMW' OR 'JAGUAR' OR 'JENSEN' ON TABLE SET PAGE-NUM NOPAGE ON TABLE SET HTMLCSS ON ON TABLE SET STYLE * TYPE=REPORT,GRID=OFF,FONT=ARIAL,SIZE=9,$ TYPE=TITLE,COLUMN=LIFE,JUSTIFY=RIGHT,$ ENDSTYLE END -EXITThis message has been edited. Last edited by: Kamesh,
WFConsultant
WF 8105M on Win7/Tomcat
Posts: 780 | Location: Florida | Registered: January 09, 2005
DEFINE FILE CAR
PERIOD/A20=IF CAR EQ 'AUDI' THEN '12/31/11'
ELSE IF CAR EQ 'BMW' THEN '1/1/12 - 12/31/12'
ELSE IF CAR EQ 'DATSUN' THEN '12/31/12'
ELSE IF CAR EQ 'JAGUAR' THEN '12/31/12'
ELSE IF CAR EQ 'JENSEN' THEN '1/1/12 - 12/31/12'
ELSE IF CAR EQ 'MASERATI' THEN '1/1/12 - 12/31/12'
ELSE IF CAR EQ 'TOYOTA' THEN '12/31/12'
ELSE '';
END
TABLE FILE CAR
SUM
PERIOD DEALER_COST RETAIL_COST
FOR CAR
AUDI AS 'PENDING' LABEL PEND OVER
BMW AS 'NEW' OVER
RECAP NEWBAR1(2,3)/A20 = '--------------------'; AS '' OVER
JAGUAR AS 'NET' OVER
RECAP NEWBAR2(2,3)/A1 = ' '; AS '' OVER
JENSEN AS 'NOT VALID'
WHERE CAR EQ 'AUDI' OR 'BMW' OR 'JAGUAR' OR 'JENSEN'
ON TABLE SET PAGE-NUM NOPAGE
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
TYPE=REPORT,GRID=OFF,FONT=ARIAL,SIZE=9,$
TYPE=TITLE,COLUMN=LIFE,JUSTIFY=RIGHT,$
TYPE=REPORT, LABEL=NEWBAR2, BORDER-TOP=LIGHT, COLUMN=N3, BORDER-STYLE=DOTTED, $
TYPE=REPORT, LABEL=NEWBAR2, BORDER-TOP=LIGHT, COLUMN=N4, BORDER-STYLE=SOLID, $
ENDSTYLE
END
Alan. WF 7.705/8.007
Posts: 1451 | Location: Portugal | Registered: February 07, 2007