Formatting cell size

datadummy

Active Member
Joined
Mar 16, 2017
Messages
313
Office Version
  1. 365
Platform
  1. Windows
I am looking for advice on formatting cells for height and width. I have tried selecting the whole worksheet and then using the cell Autofit functions in the format section to no avail. I have multiple columns that are to narrow while others are to wide. Any advice on adjusting these without addressing each cell manually?
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Have you tried selecting the entire sheet then double-clicking on a column or row divider at the top/left of the sheet? (the grey bars with column/row labels)
 
Upvote 0
Yea to no avail, I am wondering if the fact that wrap text has been applied to the entire sheet is factoring in. I'm at a loss.
 
Upvote 0
That could be. When I copy/paste data from threads here, I use this little snippet to clean it up because the forum formatting is goofy when pasted into excel.

Rich (BB code):
Sub Macro1()
'
' Macro2 Macro
'
'
    ActiveSheet.UsedRange.Select
    With Selection
        .Font.Name = "Calibri"
        .Font.Size = 11
        .Font.ColorIndex = xlAutomatic
        .Interior.Pattern = xlNone
        .EntireColumn.AutoFit
        .HorizontalAlignment = xlGeneral
        .WrapText = False
        .Orientation = 0
        .MergeCells = False
    End With
End Sub
 
Upvote 0

Forum statistics

Threads
1,223,952
Messages
6,175,594
Members
452,654
Latest member
mememe101

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top