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 for Programming
 LabTalk Forum
 Last Sheet in Workbook?

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
RykerBennett Posted - 06/22/2020 : 03:39:41 AM
Origin 2019b (32-bit)
9.6.5.169
Windows 10

Hello, I am searching for a command/variable to delete the last sheet in a workbook.https://trackeasy.fun/usps/ https://showbox.tools/ http://essaywriter.fun/

I just found __LASTWKS$ which is the last workbook. There has to be the same for the last worksheet.

Hope somebody can help me.
1   L A T E S T    R E P L I E S    (Newest First)
AKazak Posted - 06/22/2020 : 07:52:33 AM
Try this:


[DeleteLastSheet]
	// https://www.originlab.com/doc/LabTalk/ref/Page-obj
	type "This book|page has $(page.nlayers) sheet(s)|layer(s).";
	int OriginalActivePageNumber = page.active;
	if (OriginalActivePageNumber == page.nlayers) OriginalActivePageNumber -= 1;
		
	page.active = page.nlayers;
	
	//https://www.originlab.com/doc/LabTalk/ref/Layer-cmd#-d.3B_delete_the_active_layer
	layer -dd;
	
	page.active = OriginalActivePageNumber;



---
AK

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