Hi,
I have an excel file which I need to divide it in different excel files
To do that, I need to compare different row values
For example, I need to know if the value from C13 is equal than the C14
If C13 (00000000T) and C14 (00000000T) are equal, create an excel file with the values
But If C14 (00000000T) and C15 (00913732B) are not equal, do not write the C15 values (00913732B) in the previous excel, but create a new one and start comparing with the new value
How can I do that?
I thought something like
IF row(“columnName”) = row+1(“columnName”)
Then Write range
But I do not know how to make it work