Forum Discussion
NisHera
10 years agoValued Contributor
This is kinda psudo code for your problem
Looks more like jscript
have to rewite in vbs and get values using correct grid methods
For (i =0 to RowCount){
var AExist = false
var BExist = false
var CExist = false
For (j = 0 to columncount){
P = grid.wvalue(i,j)
if (p == A)
{AExist = true}
if (P == B)
{BExist = true}
if (P == C)
{CExist = true }}
If (AExist and BExist and CExist)
{Log. message ("A B C Exists in the row number "+ i) }}