[Search for users] [Overall Top Noters] [List of all Conferences] [Download this site]

Conference ilbbak::ibi_focus

Title:FOCUS, from INFORMATION BUILDERS
Moderator:ZAYIUS::BROUILLETTE
Created:Thu Feb 19 1987
Last Modified:Mon May 05 1997
Last Successful Update:Fri Jun 06 1997
Number of topics:615
Total number of notes:1779

250.0. "LEADING SPACES" by MIDCIM::LINDQUIST () Wed Aug 16 1989 10:40

    Help
    	I'm using an 'across' verb and trying to get the
    	headers to line up over the columns. I am unable to
    	get an exact lineup. I have tried using a define
    	and concatenate operation..ie.
    		fyyr/a8 = '  ' || fy || fq || '  ' 
    	where fyyr is used as:
    		across fyyr
    	but focus suppresses the leading 2 blanks.
    
    	how do I force the blanks to print?
    
    	or any other ideas?
    
    thanks
    
T.RTitleUserPersonal
Name
DateLines
250.1Hard vs. soft concatenateMILPND::SHELTRYRrruffles have rrranch?Wed Aug 16 1989 11:2213
    		fyyr/a8 = '  ' || fy || fq || '  ' 
                               ^           ^
-------------------------------|           |
                                           |
-------------------------------------------|

     My first impression would be to take out one of the '|'
     symbols in your definition.  || is a 'hard concatenate'
     and will remove extra spaces.  It should work with just
     one.  Same goes for the one at the end of your expression.

Wayne

250.2workedMIDCIM::LINDQUISTWed Aug 16 1989 12:312
    Thanks, that worked.