Hi everyone! I searched a lot for similar questions in this forum but didn't find anything.
I have 12 workbooks, each one with 25 worksheets. I should multiply the column (E) of each worksheet in each workbook by a constant *5.73. Is there any command to do this process at once?
Thanks!
2 L A T E S T R E P L I E S (Newest First)
Mik95
Posted - 03/11/2021 : 4:34:37 PM
quote:Originally posted by YimingChen
Go to menu Window->Script Window, enter the script below, highlight all and hit Enter to run.
doc -e LB
{
col(E) = col(E)*5.73;
}
Note: This operation will apply to all sheets in all workbooks and matrixbooks in the project.
James
Thank you James!
YimingChen
Posted - 03/11/2021 : 2:07:52 PM Go to menu Window->Script Window, enter the script below, highlight all and hit Enter to run.
doc -e LB
{
col(E) = col(E)*5.73;
}
Note: This operation will apply to all sheets in all workbooks and matrixbooks in the project.