» Change range with more then Area to values using VBA in Microsoft Excel
VBA macro tip contributed by Ron de Bruin, Microsoft MVP - Excel
CATEGORY - Cells, Ranges, Rows, and Columns in VBA
VERSION - All Microsoft Excel Versions
Sub Values_4()
Dim smallrng As Range
For Each smallrng In Range("a1:c10,e12:g17").Areas
smallrng.Value = smallrng.Value
Next
End Sub
Book Store:
No comments have been submitted.

