Jump to content

Trying to figure out a way in WebFOCUS on the Synonym or on ...


Kristi Carter

Recommended Posts

You could use the REPLACE function to put in <br> tags. For example, to add line breaks after 'ADM' and 'MGR' in the SKILL_DESC field of ibisamp/jobfile.

TABLE FILE ibisamp/jobfile

PRINT

SKILL_DESC

COMPUTE SKILL_DESC2/A35 = REPLACE(SKILL_DESC, 'ADM', 'ADM'|'<br>');

COMPUTE SKILL_DESC3/A40 = REPLACE(SKILL_DESC2, 'MGR', 'MGR'|'<br>');

ON TABLE PCHOLD FORMAT AHTML

END

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
  • Create New...