On Friday, we learned how to transpose a table of data using Excel formulas.
In comments of that post, Joey gave us an interesting tip.
Might I recommend an alternative that involves no array formulas, is easier to debug and less computationally intensive.
1) Highlight area to be transposed and copy
2) Paste special -> Paste Link, somewhere else on the sheet
3) Highlight new area and Find/Replace “=” with “xxx”
4) Copy new area, paste special –> transpose
5) Find/Replace “xxx” with “=”
Now you have a direct link to the cell with no fancy formula required (link)
This is quick, easy to use & lovely way to transpose data.
So let me explain this in detail.
6 Steps to transpose a table of data
by using Copy, Paste, Find & Replace
- Copy your original data & paste links to it in a blank place (CTRL+ALT+V and L)
- Select this new data & Press CTRL+H
- Replace all = with x=
- Copy again & paste special > transpose in another blank area
- Press CTRL + H again and Replace all x= with =
- You are Done!
See below tutorial to understand how this works:

Thanks Joey…,
Special thanks to Joey for suggesting this method. It is a testament to our readers’ awesomeness.
If you enjoyed this tip, say thanks to Joey.
More tricks using Paste Special, Find Replace etc.
For a few more tricks & clever uses of paste special, find replace, go to special, check out these links:
- Quickly fill blank cells in a table using Paste Special
- Extract portions of text using Find Replace
- Use Paste Special to format charts quickly
- Quickly change formulas using Find Replace
- Compare row differences using Go to Special
- Delete Blank rows using goto special
- More tips on using Paste Special, Go to Special & Find Replace














One Response to “How to compare two Excel sheets using VLOOKUP? [FREE Template]”
Maybe I missed it, but this method doesn't include data from James that isn't contained in Sara's data.
I added a new sheet, and named the ranges for Sara and James.
Maybe something like:
B2: =SORT(UNIQUE(VSTACK(SaraCust, JamesCust)))
C2: =XLOOKUP(B2#,SaraCust,SaraPaid,"Missing")
D2: =XLOOKUP(B2#,JamesCust, JamesPaid,"Missing")
E2: =IF(ISERROR(C2#+D2#),"Missing",IF(C2#=D2#,"Yes","No"))
Then we can still do similar conditional formatting. But this will pull in data missing from Sara's sheet as well.