Delete worksheet rows
1. wdelrows del:=1 skip:=9 start:=1;
2. wdelrows m:=1 r:=col(a);
Please refer to the page for additional option switches when accessing the x-function from script
Display Name |
Variable Name |
I/O and Type |
Default Value |
Description |
---|---|---|---|---|
Input Worksheet | irng |
Input Worksheet |
Specifies the source range. | |
Reduce Method | method |
Input int |
Reduce method. Option list:
| |
Reference Column | rng |
Input Range |
Delete rows according the specified reference column. Script accessible only. | |
Delete Rows | del |
Input int |
Number of rows to delete. | |
Skip Rows | skip |
Input int |
Number of rows to skip. | |
Starting Row(s) to Delete | start |
Input int |
Starting row to begin deletion. | |
Ending Row to Delete | end |
Input int |
Ending Row to Delete. Script accessible only. | |
Output Worksheet | orng |
Output Worksheet |
The output range. See the syntax here. |
This X-Function deletes worksheet rows by one of the following method:
By default, this function will delete the entire row if any cell in the row satisfies the condition you selected. If you want to delete rows that refer to some other columns, you should run this function by script.
Reduce Method: | Delete N rows, then skip M rows |
Delete Rows: | 1 |
Skip Rows: | 9 |
Starting Row to Delete: | 1 |