Note: You must be registered in order to post a reply. To register, click here. Registration is FREE!
T O P I C R E V I E W
AKazak
Posted - 03/21/2026 : 08:52:33 AM OriginPro 2026b (64-bit) Beta2 10.3.5.62 Windows 10 Pro
Greetings!
I have a number of worksheets sharing the same structure. In a single worksheet I add few additional columns with formulas and LT scripts before formula.
What is the best way to copy these extra columns to all the other similar worksheets by insert new columns to the same locations as those of the original columns?
How do I duplicate column B along with its headers formulas from Sheet1 to all the other sheets?
Thank you.
--- Andrey
8 L A T E S T R E P L I E S (Newest First)
AKazak
Posted - 04/28/2026 : 10:20:46 AM
quote:Originally posted by snowli
Hi Andrey,
Just FYI that we released beta4 with some bug fixes including Insert into Other Sheets issues.
Could you use beta4 instead of beta3?
Thanks, Snow
Dear Snow, Sure thing! I will use 2026b Beta4.
--- Andrey
snowli
Posted - 04/27/2026 : 5:09:21 PM Hi Andrey,
Just FYI that we released beta4 with some bug fixes including Insert into Other Sheets issues.
Could you use beta4 instead of beta3?
Thanks, Snow
AKazak
Posted - 04/17/2026 : 04:03:03 AM
quote:Originally posted by cpyang
hi Andrey
We have just release beta3 with this ability to insert selected columns to similar worksheets.
CP
Dear CP,
Well noted. I will download b3 and test it.
--- Andrey
cpyang
Posted - 04/16/2026 : 2:18:15 PM hi Andrey
We have just release beta3 with this ability to insert selected columns to similar worksheets.
CP
AKazak
Posted - 03/24/2026 : 10:03:43 AM
quote:Originally posted by cpyang
We are adding this ability in 2026b to add column to other sheets. We can work on also Insert support. Or adding is good enough?
CP
Dear CP,
Add and Insert would be great! Besides, please implement selection 1+ source columns to paste to the similar worksheets.
--- Andrey
cpyang
Posted - 03/24/2026 : 09:02:47 AM We are adding this ability in 2026b to add column to other sheets. We can work on also Insert support. Or adding is good enough?
CP
AKazak
Posted - 03/23/2026 : 2:58:22 PM
quote:Originally posted by YimingChen
You may try the script below:
for (int i = 2; i <= page.nlayers;i++) {
page.active = i;
wks.col = 2;
wks.insert();
range rs = 1!;
wks.col.formula$ = %(rs.col2.formula$);
wks.col.lname$ = %(rs.col2.lname$);
}
Yiming
Got it. Is there a way to do the same via GUI?
--- Andrey
YimingChen
Posted - 03/23/2026 : 2:55:45 PM You may try the script below:
for (int i = 2; i <= page.nlayers;i++) {
page.active = i;
wks.col = 2;
wks.insert();
range rs = 1!;
wks.col.formula$ = %(rs.col2.formula$);
wks.col.lname$ = %(rs.col2.lname$);
}