Having Macro Read Values Not Formulas

somebody113

New Member
Joined
Apr 28, 2011
Messages
14
Having Macro Read Values Not Formulas

I'm having a problem with the code below since it's trying to pull data from FORMULAS, and not VALUES. Is there a way I can force this macro to read the values and not the formulas?

Code:
Sub AdvFilter()
'
' AdvFilter Macro
' Select first cell in column (Sheet3!H2)

Range("Sheet3!H2").Select

' Extending the selection down to the cell just above the first blank cell in this column  

Range(Selection, Selection.End(xlDown)).Select

' Execute Advanced Filter on selection and copy to Sheet3!I2 

Selection.AdvancedFilter Action:=xlFilterCopy, CopyToRange:=Range( _ 
"Sheet3!I2"), Unique:=True

End Sub
 
Last edited:

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
you just want to copy and paste the value, .copy then .pastespecial xlPasterValues

Try this instead

Code:
sub Test()
   dim rng as range
   set rng = Worksheets("Sheet3").Range("H2")
   set rng = Range(rng, rng.End(xlDown))
   rng.copy
   Worksheets("Sheet3").Range("I2").PasteSpecial xlPasteValues
End Sub
 
Last edited:
Upvote 0

Forum statistics

Threads
1,224,561
Messages
6,179,521
Members
452,923
Latest member
JackiG

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