I need to compare two cell values and act on them if they are different. My \"if\" statement always returns false when comparing the cell contents however, and I can\'t figu
The following line of code is incorrect, below it is corrected.
var testvalue1 = testvalues[0][0]; // The contents from A1 var testvalue2 = testvalues[1][0]; // The contents from A2
You are originally grabbing the entire row instead of a single cell.