Get value of a merged cell of an excel from its cell addr…
https://stackoverflow.com/questions/9407474/get-value-of-a-merged-cell-of-an-excel-from-its-cell-address-in-vba
QuestionAnswer47answered Feb 23, 2012 at 7:29Even if it is really discouraged to use merge cells in Excel (use Center Across Selection for instance if needed), the cell that "contains" the value is the one on the top left (at least, that's a way to express it). Range("B4").Value Range("B4:B11").Cells(1).Value Range("B4:B11").Cells(1,1).Value
Range("B4").Value
Range("B4:B11").Cells(1).Value
Range("B4:B11").Cells(1,1).Value
DA: 33 PA: 88 MOZ Rank: 12