0
votes

I have tried to make multiple selections in an excel sheet where there are formulas in each cell that is highlighted as shown below. I have tried copy/paste these cells, so they only show hardcoded values instead of formulas. Unfortunately, Excel doesn't allow this type of action when you have multiple selections. Is there a way to have multiple selections (as shown below) in Excel and copy only the selected cells and then paste the values with only having to use the paste special option once?

enter image description here enter image description here

1

1 Answers

0
votes

I don't think there is any other way than using VBA in this case.

This code worked for me:

Sub myPasteSpecial()
  Dim cell As Range
  
  For Each cell In Selection
    cell.Value = cell.Value
  Next cell
  
End Sub