Date: Tue, 2 Sep 2008 07:06:35 -0400
Reply-To: Gerhard Hellriegel <gerhard.hellriegel@T-ONLINE.DE>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Gerhard Hellriegel <gerhard.hellriegel@T-ONLINE.DE>
Subject: Re: Need to continue over SAS line
don't know, but try to split it in two or three or more macro variables
and fit them together:
%let url=the.first.part.oft.the.long.url;
%let url=&url.the.second.part.of.the.long.url;
%let url=&url.the.third.part;
then use the macro variable &url.
Gerhard
On Tue, 2 Sep 2008 03:01:18 -0700, martholt <martinholt42@YAHOO.CO.UK>
wrote:
>Hi,
>
>I'm entering a URL that is very long into SAS. It runs over into the
>next line and overall doesn't work. Is there a symbol (like in R) that
>tells SAS to continue onto the next line ?
>
>TIA,
>
>Martin
|