VBA Excel final piece to the puzzle, hopefully removing formulas NOT converting table

cizzett

Board Regular
Joined
Jan 10, 2019
Messages
121
So I have been using the below VBA script to remove the formulas from my worksheet when im preparing to save and distribute the workbook but now that i am using a table instead of a range to feed the pivots etc I cannot use this same one.

When I run this it still removes all the formulas as desired and leaves the values in the fields but this also converts the table to a range.

Anyone have an idea how I can do the same thing, remove all formulas and leave the values but not convert my table to a range?

Code:
Sub RemoveFrmls()

    Application.ScreenUpdating = False
        Cells.EntireColumn.Hidden = False


     ' Remove Formulas
    Dim ws As Worksheet
       Set ws = ThisWorkbook.Sheets("Today")
        ws.UsedRange.Value = ws.UsedRange.Value
        
        Application.ScreenUpdating = True
End Sub
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
Try

Code:
Sub RemoveFrmls()


    Application.ScreenUpdating = False
    Cells.EntireColumn.Hidden = False
    ' Remove Formulas
    Dim ws As Worksheet
    Set ws = ThisWorkbook.Sheets("Today")
    ws.Cells.Copy
    ws.Range("A1").PasteSpecial xlPasteValues
    Application.CutCopyMode = False
    Application.ScreenUpdating = True
End Sub
 
Upvote 0

Forum statistics

Threads
1,213,510
Messages
6,114,044
Members
448,543
Latest member
MartinLarkin

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