![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Board Regular
Join Date: Apr 2002
Location: Detroit
Posts: 792
|
Cell calculations in Columns A:F are based on cells in columns G:Z
I want to convert all formula data to the actual value (and then delete columns G:Z) How to convert is the question |
|
|
|
|
|
#2 |
|
Board Regular
Join Date: Feb 2002
Location: Houston,Texas
Posts: 418
|
Select columns A-F. Copy . EDIT > Paste Special >Values
|
|
|
|
|
|
#3 |
|
MrExcel MVP
Join Date: Mar 2002
Location: Chicago, IL USA
Posts: 2,042
|
Try,
Sub test() Dim Rng As Range Set Rng = Intersect(ActiveSheet.UsedRange, ActiveSheet.Range("A:F")) Rng = Rng.Value Columns("G:Z").Delete shift:=xlToLeft End Sub Bye, Jay |
|
|
|
|
|
#4 |
|
Board Regular
Join Date: Apr 2002
Location: Detroit
Posts: 792
|
Thanks Steve, got it all to work in VB
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|