Hi,
I have the following macro that works perfect to copy cells from Sheet "Parameters" to all active sheets. However, a lot of the cells contain formulas that require 'CTRL+SHIFT+ENTER' to work. Is there a way the macro below can be modified so that such macros automatically work when copied, rather than me doing the cells individually which would take a long time!
Thank you
Sub dtrom()
Dim ws As Worksheet
For Each ws In Worksheets
ws.Range("N1:AG3000").Formula = Sheets("Parameters").Range("N1:AG3000").Formula
Next ws
End Sub
Bookmarks