Pasting question

jnewton34120

New Member
Joined
Feb 2, 2024
Messages
6
Office Version
  1. 365
Platform
  1. Windows
I am having an issue in Excel that I think is an easy fix but I just can't figure it out. I'm trying to sort a table of data which is originally a formula so I'm taking the whole table and copying and pasting the table over itself. When I copy the column that is a list of 7 number codes it copies it as text and not a number. I'm trying to make a macro that does this step and then sorts it but since the data is stored as text it just won't do it. I've highlighted the whole column and set the type to number but it just keeps changing it back on me. If there is a way to have a macro that converts a column back into numbers that would work too.
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
try this, changing the table name and table column to suit
VBA Code:
With ActiveSheet.ListObjects("Table1").ListColumns(3)
    .DataBodyRange.NumberFormat = "General"
    .DataBodyRange.Value = .DataBodyRange.Value
End With
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,959
Members
449,096
Latest member
Anshu121

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