Hi Marc,Hi !
The VBA Copy method takes only visible cells so no trap,
beginner level : just read VBA help of this method !
Another must see method : PasteSpecial …
Also you can activate Macro recorder and you will get your code …
Hi Amit ,
See the attached file.
Apply a filter on the formula field which is column P. Run the macro named CopyFilter. The formulae in the filtered range should be replaced by their values.
Narayan
Hi Marc,It's clearly stated in VBA help of PasteSpecial method !
Start to do it manually, Copy then PasteSpecial via right click menu …
Activate Macro recorder to obtain a base of code.
See also in VBA help SpecialCells method …
Another way : Range.Formula = Range.Value …