BookmarkSubscribeRSS Feed
deleted_user
Not applicable
Here's my situation: I'm writing formulas into an excel template from sas using dde but there are three tabs in the worksheet and there are a lot of columns on two of the tabs that will need a sumif statement. The problem I've encountered is the range and sum_range of the sumif statement are from different workbooks than where the actual sumif calculation is. I've found a temporary solution but it will require a lot of steps and will undoubtedly make my code massive. Please take a look and let me know if anyone has any suggestions. If someone can help me figure out how to write the sum if statement so that it's similar to "put '[formula.fill("=1+1","R2C4:R20C4")]';" it would certainly make my day! At least using this code, I would be able to tell it the formula range without an added step. I've tried everything. Thanks!

Here's my code thus far:

filename ddedata1 dde 'excel|G:\MY DOCUMENTS\[template dc10.xlt]By Store!R3C12:R4410C12' notab lrecl=4412;
data _null_;
file ddedata1;
put '=sumif(data!$c:$c,$a3,data!L:L)';
run;
quit;

data _null_;
file ddeopen;
put '[error(false)]';
put '[workbook.activate("By Store")]';
put '[select("R3C12")]';
put '[copy("R3C12")]';
put '[paste("R4C12:R4410C12")]';
run;
quit;

For just this section of my template that I'd need to fill in with these formulas, I'd have to copy and paste it 31 more times and that's just for one of the two workbooks.
1 REPLY 1
ArtC
Rhodochrosite | Level 12
This is not something that I have done, but.... LeRoy Bessler has written a couple of papers that include writing formulas to Excel using DDE. Take a look at
http://www2.sas.com/proceedings/sugi31/022-31.pdf
as a start.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 1386 views
  • 0 likes
  • 2 in conversation