I have many columns in my spreadsheet
Some cells have formulas others do not
I tried the following code to improve the creation of all formulas on the worksheet
Th problem is that if a cell does not have a formula, it copies the value of the "from" cell
Please advice
Some cells have formulas others do not
I tried the following code to improve the creation of all formulas on the worksheet
Code:
rowM = 16000
Sheets("Sheet1").Select
Range("BA4:KZ4").Select
Selection.Copy
Range("BA5:KZ" & rowM).Select
Selection.PasteSpecial Paste:=xlPasteFormulas, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
Th problem is that if a cell does not have a formula, it copies the value of the "from" cell
Please advice