deletedalien
Well-known Member
- Joined
- Dec 8, 2008
- Messages
- 505
- Office Version
- 2013
- Platform
- Windows
Hey guys hi to all,
so here is a quick one that i can honestly not figure out,
so i have data in columns a - h
i filter data using column d
i need to copy paste values in column g to convert formulas to data
the macro runs fine
but after i check the cells the formulas are still there
i tried this using a named range from the top of the data (G2:G80)
but same result)
also tried with unnamed ranges
so here is a quick one that i can honestly not figure out,
so i have data in columns a - h
i filter data using column d
i need to copy paste values in column g to convert formulas to data
the macro runs fine
but after i check the cells the formulas are still there
i tried this using a named range from the top of the data (G2:G80)
but same result)
Code:
Range("GP").Select
Range("GP").Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
Range("F2").Select
ActiveSheet.ShowAllData
End Sub
also tried with unnamed ranges
Code:
Range("G2").Select
ActiveCell.Offset(1, 0).Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
Range("F2").Select
ActiveSheet.ShowAllData