| Date: | Wed, 27 Nov 1996 06:01:00 -0600 |
| Reply-To: | H.MCLEAN@PLUM.FRUIT.COM |
| Sender: | "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU> |
| From: | Hays McLean <H.MCLEAN@PLUM.FRUIT.COM> |
| Subject: | Re: SAS/Lotus OS2 DDE Problems |
| In-Reply-To: | The letter of Wednesday, 27 November 1996 8:58am CT |
|---|
> * --------------------------------------------------------------- *;
> FILENAME WKFILE1 DDE 'LOTUS|name.Wk1!lotusrange' NOTAB;
> * --------------------------------------------------------------- *;
> * the lotus range consists of two cells (A1 and A2);
> data work.out1;
> set saslib.dataset;
> FILE WKFILE1;
> PUT #1 var1
> #2 var2;
Robert,
Try removing the NOTAB in the Filename. That is how I usually do it in Lotus
for Windows. And I don't understand the #1 and #2 in the PUT statement. I
use 'PUT var1 var2', and it always works for me. I don't know why the third
column would be wiped out. I've never had that problem.
--Hays McLean
|