The Origin Forum
File Exchange
Try Origin for Free
The Origin Forum
Home | Profile | Register | Active Topics | Members | Search | FAQ | Send File to Tech support
 All Forums
 Origin Forum
 Origin Forum
 wAppend multiple sheets

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

Screensize:
UserName:
Password:
Anti-Spam Code:
Format Mode:
Format: BoldItalicizedUnderlineStrikethrough Align LeftCenteredAlign Right Horizontal Rule Insert HyperlinkUpload FileInsert Image Insert CodeInsert QuoteInsert List
   
Message:

* HTML is OFF
* Forum Code is ON
Smilies
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Clown [:o)]
Black Eye [B)] Eight Ball [8] Frown [:(] Shy [8)]
Shocked [:0] Angry [:(!] Dead [xx(] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

T O P I C    R E V I E W
Shivavishnu Posted - 03/28/2018 : 4:57:11 PM
Hi,

I'm trying to append multiple sheets with the same name from different books to a single sheet. The worksheets I'm trying to append have the same name "Summary", but the multiple workbooks they're held within have different names. I wanted to simply put a wildcard in for the book name as follows, but it's unable to resolve the range string.

wAppend irng:=([*]Summary!) method:=row ow:=[<new>]<new>

How should I go about doing this?

Thanks,
T

Origin Ver. and Service Release (Select Help-->About Origin): 2018 (64-bit) b9.5.0.193 (Student Version)
Operating System: Windows 10 Pro
2   L A T E S T    R E P L I E S    (Newest First)
Shivavishnu Posted - 03/29/2018 : 10:05:54 AM
Thanks, it worked perfectly!
AmandaLu Posted - 03/29/2018 : 03:35:02 AM
Hi,

wappend cannot recognize wildcard in the input range. To find all the worksheet named “Summary”, you will need to loop all windows:

str$ = "";
doc -e W{
if( exist([%H]Summary!)==2 )
{
str$ += "[%H]Summary,";
}
}
str.Delete(len(str$));
wAppend -r 2 irng:=(%(str$));

Thanks,
Amanda
OriginLab Technical Service

The Origin Forum © 2020 Originlab Corporation Go To Top Of Page
Snitz Forums 2000