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 for Programming
 LabTalk Forum
 Last Sheet in Workbook?
 New Topic  Reply to Topic
 Printer Friendly
Author Previous Topic Topic Next Topic Lock Topic Edit Topic Delete Topic New Topic Reply to Topic

RykerBennett

1 Posts

Posted - 06/22/2020 :  03:39:41 AM  Show Profile  Edit Topic  Reply with Quote  View user's IP address  Delete Topic
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.

Edited by - RykerBennett on 06/23/2020 03:16:53 AM

AKazak

Russia
1205 Posts

Posted - 06/22/2020 :  07:52:33 AM  Show Profile  Edit Reply  Reply with Quote  View user's IP address  Delete Reply
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
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