Hi
I have some code that pulls records back from a database and I want to highlight a row if the records matches another record from the same data set.
Doing a simple if statement works if I want to pick out a particular record, but I haven't a clue how to match another record, do I need to make an array or something?
an example:
red, 123, aaa, bbb ...
blue, 321, bbb, ccc ...
green, 098, ddd, eee ...
blue, 543, fff, ggg...
in column 1 the word blue is found in row 2 and 3 so I want to make an IF statement
IF column1 (recordany) = column1 (recordany) then ...
thanks
I have some code that pulls records back from a database and I want to highlight a row if the records matches another record from the same data set.
Doing a simple if statement works if I want to pick out a particular record, but I haven't a clue how to match another record, do I need to make an array or something?
an example:
red, 123, aaa, bbb ...
blue, 321, bbb, ccc ...
green, 098, ddd, eee ...
blue, 543, fff, ggg...
in column 1 the word blue is found in row 2 and 3 so I want to make an IF statement
IF column1 (recordany) = column1 (recordany) then ...
thanks