vduzivatel
Czech Republic
1 Posts |
Posted - 03/28/2024 : 4:57:15 PM
|
OriginPro 2019b (32-bit) 9.6.5.169 Operating System: Windows 11
Hi, I am looking for commands/script to calculate MEAN/100 of a group of three columns. The script should calculate the MEAN/100 for all groups in the active worksheet. The first column in the worksheet should be skipped.
What I have already written is this:
ncols=wks.ncols; for(ii=ncols;ii>=1;ii--) { if (wks.col$(ii).nrows==0) { del col($(ii)); } else break; }//deletes empty columns
(wks.ncols-1)/3= //calculates the number of groups to calculate MEAN/100
I don't know how to continue further. AI didn't help.
|
|