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
Username:
Password:
Save Password
Forgot your Password? | Admin Options

 All Forums
 Origin Forum
 Origin Forum
 wAppend multiple sheets
 New Topic  Reply to Topic
 Printer Friendly
Author Previous Topic Topic Next Topic Lock Topic Edit Topic Delete Topic New Topic Reply to Topic

Shivavishnu

USA
4 Posts

Posted - 03/28/2018 :  4:57:11 PM  Show Profile  Edit Topic  Reply with Quote  View user's IP address  Delete Topic
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

AmandaLu

439 Posts

Posted - 03/29/2018 :  03:35:02 AM  Show Profile  Edit Reply  Reply with Quote  View user's IP address  Delete Reply
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
Go to Top of Page

Shivavishnu

USA
4 Posts

Posted - 03/29/2018 :  10:05:54 AM  Show Profile  Edit Reply  Reply with Quote  View user's IP address  Delete Reply
Thanks, it worked perfectly!
Go to Top of Page
  Previous Topic Topic Next Topic Lock Topic Edit Topic Delete Topic New Topic Reply to Topic
 New Topic  Reply to Topic
 Printer Friendly
Jump To:
The Origin Forum © 2020 Originlab Corporation Go To Top Of Page
Snitz Forums 2000