The issue was trying to append different datatypes together. The must be explicitly cast to, for instance, the string datatype for this to work.
For instance:
select [Region Desc]+'-'+[Country Code]+'-'+'Order#: '+[Purchase Order Num] as [Lease Agreement],* from [Report$]
Should be:
select [Region Desc]+'-'+[Country Code]+'-'+'Order#: '+STR([Purchase Order Num]) as [Lease Agreement],* from [Report$]