I have some code that imports a recordset from SQL Server and returns to my report and pastes the data into a set cell, I'm trying to add a word after the number imported how can I do this?

Sheet3.Range("C12").CopyFromRecordset rsDW
so I want to show in cell C12... 8 Months (so 8 would be returned from SQL Server and Months would be added afterwards)

How can I do this?