'Excel displays incorrect cell data, disappears

Data in my spreadsheet seems to be stored correctly but is displaying wrong.

Each row is displayed in the subsequent row. Row 1 data is not displayed. Row 2 data is displayed in row 1. Row 3 data is displayed in row 2, and so on. If a cell in Row 2 is double-clicked, the correct cell contents are displayed in the formula bar, while the cell contents being displayed disappear.

Also, all text appears to be vertically aligned along the top inside the cells, even though this option isn't chosen. (text appears shifted to the top of each cell)

Sorry if this seems confusing, I appreciate the help. Below is a picture of what all the text looks like, and an example of the cell/formula bar displaying different contents

enter image description here



Solution 1:[1]

The modification of the font size can indeed cause such an issue, although normally font size modification also causes row heigth update.

I would advise you to do following modifications to your macro:
Currently:

Sheet2.Rows("2:" & Rows.Count).ClearContents
Sheet2.Rows("2:" & Rows.Count).ClearFormats 
Sheet2.Cells.Font.Name = "Calibri" 
Sheet2.Cells.Font.Size = 11

Change it into:

Sheet2.Rows("2:" & Rows.Count).ClearContents
Sheet2.Rows("2:" & Rows.Count).ClearFormats

As you see, just drop the formatting specification.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Dominique