I have a multi-dimensional array as follows,
dim examp(4,3) as string
examp(0,0)="1"
examp(0,1)="2"
examp(0,2)="3"
examp(1,0)="6"
examp(1,1)="4"
examp(1,2)="8"
examp(2,0)="1"
examp(2,1)="2"
examp(2,2)="3"
examp(3,0)="5"
examp(3,1)="2"
examp(3,2)="3"
now i need to find the row number where 1st & 2nd column values are 2,3. Output will be 0,1,2
Can anyone please help me out from this issue?
dim examp(4,3) as string
examp(0,0)="1"
examp(0,1)="2"
examp(0,2)="3"
examp(1,0)="6"
examp(1,1)="4"
examp(1,2)="8"
examp(2,0)="1"
examp(2,1)="2"
examp(2,2)="3"
examp(3,0)="5"
examp(3,1)="2"
examp(3,2)="3"
now i need to find the row number where 1st & 2nd column values are 2,3. Output will be 0,1,2
Can anyone please help me out from this issue?