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] dropdown in a row

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[CLOSED] dropdown in a row
 Login/Join
 
Master
posted
Hi,

I want to display a report with 3 columns, 2 of those will be regular column and 3rd one should be dropdown value.

1 Name dropdown values of names
2 Age dropdown values of age

How can I get the dropdown values to show on the report?

Thanks in advance,

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


WFConsultant

WF 8105M on Win7/Tomcat
 
Posts: 780 | Location: Florida | Registered: January 09, 2005Report This Post
<JG>
posted
Something along the lines of this

 
DEFINE FILE CAR
 LASTMODEL/I5= 1; 
END
TABLE FILE CAR
SUM 
  LASTMODEL 
BY COUNTRY
BY CAR 
PRINT MODEL 
BY COUNTRY
BY CAR 
ON TABLE HOLD
END
-RUN
-SET &NOMODELS=&LINES;
DEFINE FILE HOLD
 CNTR/I5 WITH MODEL=LAST CNTR +1; 
 LASTMOD/A20= IF CNTR EQ LASTMODEL THEN '</select>' ELSE ''; 
 MODELD/A120=IF CNTR EQ 1 THEN       '<select><option value="' || MODEL || '">' || MODEL || '</option>' || LASTMOD ELSE
                    IF CAR NE LAST CAR THEN '<select><option value="' || MODEL || '">' || MODEL || '</option>' || LASTMOD ELSE
                                            '<option value="' || MODEL || '">' || MODEL || '</option>' || LASTMOD;
 MODLIST/A4000V =IF CAR NE LAST CAR THEN MODELD ELSE MODLIST || MODELD;
END
TABLE FILE HOLD
SUM CAR
BY COUNTRY
BY CAR NOPRINT
SUM
MODLIST
BY COUNTRY
BY CAR NOPRINT
END
 
 
Report 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] dropdown in a row

Copyright © 1996-2020 Information Builders