|
In the data window, you need to use the find function to find the data rows that meet the conditions, but you need to reference a numeric variable in the search conditions. Such as
ll_found = dw_status.Find ("emp_salary = j", 3, dw_status.RowCount ())
// j is a numeric variable
Can be used in this way, j cannot be replaced by the value taken in the program. For example, if j is converted to a string, an error of inconsistent data type will be reported during execution.
I do not know how to use it, please advise. |
|