I don't know. When I opened the sample workbook, it showed #VALUE! in the cell. I pressed F2 and Enter and it was OK. I copied it down; it copied OK. I created a small VBA routine; it worked OK and filled in all the formulas.
I even tried re-inputting the formula from scratch by navigating to the source cells ... worked just fine..
I'm not sure what uploading a different workbook would add.
You could try this code; it will add the formula and then convert it to a value.
Option Explicit
Sub sAddFormula()
Dim lLR As Long
With Sheets("Output")
lLR = .Range("A" & .Rows.Count).End(xlUp).Row
With .Range("F2:F" & lLR)
.Formula = "='Export Freshbooks'!I2*'Export Freshbooks'!J2"
.Value = .Value ' optional: convert formula to value
End With
End With
End Sub
Regards, TMS
Bookmarks