Select worksheet cells using specified condition
1. wcellsel rng:=1! cond:=le val:=3; // whole sheet to select all cells < 3
2. wcellsel rng:=1 c:=gt v:=0.5; // sel col(1) for cells > 0.5
3. wcellsel c:=none; // clear all selection in active sheet
4. wcellsel;// same as above since none is the default
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 | rng |
Input/Output Range |
|
The specified range to select. |
Condition | condition |
Input int |
|
The condition to select data
Option list:
|
Cutoff Value | val |
Input double |
|
The cutoff data is used for condition. |
Tolerance for Equal Testing | tol |
Input double |
|
Tolerance used in comparing the values of the cell and the cutoff. |
This function is used to set cell(s) color with specified condition.