G
grammad
I used to use Lotus 123 when I was working ages ago. I have Excel 97
and know next to nothing about using it.
I have imported my checking account records for one year into an
Excel worksheet. The first column is called Post/Tran and there are
two rows -one for the posted date and one for the transaction date. I
want to sort the worksheet data, but it will not allow a sort because
all of the cells are not the same size. I (surprisingly) was able to
record a macro to do this for one set of cells, but I need to do it
for the whole column (564) lines.
Here is the macro I have:
Keyboard Shortcut: Ctrl+m
'
Range("A37:A38").Select
Range("A38").Activate
With Selection
.HorizontalAlignment = xlLeft
.VerticalAlignment = xlBottom
.WrapText = False
.Orientation = 0
.IndentLevel = 0
.ShrinkToFit = False
.MergeCells = True
End With
Range("A40").Select
Application.Run "'2007 Checking History through 0ct 7.xls'!Macro5"
End Sub
What is the next step?.
Thank you,
Shirley
and know next to nothing about using it.
I have imported my checking account records for one year into an
Excel worksheet. The first column is called Post/Tran and there are
two rows -one for the posted date and one for the transaction date. I
want to sort the worksheet data, but it will not allow a sort because
all of the cells are not the same size. I (surprisingly) was able to
record a macro to do this for one set of cells, but I need to do it
for the whole column (564) lines.
Here is the macro I have:
Keyboard Shortcut: Ctrl+m
'
Range("A37:A38").Select
Range("A38").Activate
With Selection
.HorizontalAlignment = xlLeft
.VerticalAlignment = xlBottom
.WrapText = False
.Orientation = 0
.IndentLevel = 0
.ShrinkToFit = False
.MergeCells = True
End With
Range("A40").Select
Application.Run "'2007 Checking History through 0ct 7.xls'!Macro5"
End Sub
What is the next step?.
Thank you,
Shirley