I have a double value I would like to increment, using the following snippet:
Total = CDbl(Total + CDbl(Workbooks(1).Worksheets(1).Cells(1,1).Value))
The code continuously returns a type mismatch error, even though the cell it points to has a decimal value in it. What am I doing wrong?