We have a Google Sheet where we keep "active" info vs "archive" info. We want to make sure the columns match up on both tabs so we can just do a cut-n-paste when we're moving data from Active to Archive.
I'm using this formula because we're trying to match up multiple columns at once: =if((transpose(Query(transpose(B1:C1),,9^9))=transpose(Query(transpose(archive!B1:C1),,9^9))),"ok","not")
Here's the weird thing: formatting seems to make a difference?!?
Please see my example on this GS: temp GS matching cols don't match???
My formula is in B5. As you can see, the formatting for C1 & D1 is different on both tabs.
I would think that since the text matches on both tabs, the formula should result in "ok" instead of "not".
It shows "not" even if you copy-n-paste values.
But if you copy-n-paste the formatting, it turns into ok.
Is this a weird bug or expected behavior? Is there a way to make this formula ignore formatting?