I'm creating an Access database that takes a large Excel spreadsheet and breaks it up in to many spreadsheets based on the values in one of the columns. When I cut and paste from the master into one of the smaller versions I end up with JPGs pasted instead of the data. Note that my code is in Access, but the source and destination of the data are in Excel. This is my first post, so it could be the wrong forum for this. Here is the relevant code:
xlMonthlyMaster.Worksheets("InitialAssessments").Range("A" & intRowStart & ":X" & intRowEnd).Copy
xlClientReport.Worksheets("InitialAssessments").Cells(intPasteRow, "A").PasteSpecial (xlPasteValues)
Any help is appreciated.
Thank you,
Curtis
xlMonthlyMaster.Worksheets("InitialAssessments").Range("A" & intRowStart & ":X" & intRowEnd).Copy
xlClientReport.Worksheets("InitialAssessments").Cells(intPasteRow, "A").PasteSpecial (xlPasteValues)
Any help is appreciated.
Thank you,
Curtis