
Originally Posted by
Harvey72
Does anyone know if it is possibly to put the data into a specific workbook and how I would modify the code?
Ok, so welcome to the closely spelled, but vastly different world of workbooks vs. worksheets.
You specified a workbook which is why I responded in the way that I did.
If you would like for it to appear on an additional sheet:
With Sheets("Sheet1")
Cells(3, 4) = DiameterFt ' Could also be expressed as Range("D3").Value = DiameterFt
Cells(4, 4) = FloorThickness
Cells(5, 4) = FootingThi
End With
With Sheets("Sheet3")
Cells(3, 4) = DiameterFt ' Could also be expressed as Range("D3").Value = DiameterFt
Cells(4, 4) = FloorThickness
Cells(5, 4) = FootingThi
End With
If you decide that it needs to appear on multiple worksheets, it might be time to consider the use of a For Each Next loop.
Bookmarks