I have a code that opens another workbook and looks at some cells and then returns the values. The problem is F20 in the opening document has a countif and gives the value but when it comes back into the main file it has the formula and not the value
Private Sub DownloadDR_Click()
Dim wb As Workbook
Dim s As String
Dim dName As String
dName = Format(CDate(Range("c3").Value), "mmddyy")
TextBox5.Text = dName
s = Worksheets(1).TextBox5.Value
Application.ScreenUpdating = False ' turn off the screen updating
'Set wb = Workbooks.Open("m:\cir at a glance\dsi reports\" & TextBox3.Value & ".xls", True, True)
Set wb = Workbooks.Open("M:\Cir at a Glance\Down Route Report\Brandermill Down Route Report " & s & ".xls", True, True)
' open the source workbook, read only
With ThisWorkbook.Worksheets(1)
' read data from the source workbook
'.Range("c42").Formu1a = wb.Worksheets(s).Range("l2").Formula & "+" wb.Worksheets(s).Range("N2").Formula
'.Range("d42").Formula = wb.Worksheets(s).Range("A20").Formula
.Range("c54").Formula = wb.Worksheets(s).Range("f20").Formula
.Range("d54").Formula = wb.Worksheets(s).Range("c4").Formula
End With
wb.Close False ' close the source workbook without saving any changes
Set wb = Nothing ' free memory
Application.ScreenUpdating = True ' turn on the screen updating
End Sub
This is used by check boxes and then adds up all the check in F20
Bookmarks