A ver... puedes cargar el recordset tal cual a la grilla y luego aplicarle un formato a esta y ahi hacer los cambios... algo asi
Código:
set MshflexGrid1.recordset=Rs
With MshflexGrid1
for i=1 to .rows-1
.textmatrix(i,1) = .textmatrix(i,1) & " " & .textmatrix(i,2)
next i
end with
espero se haya entendido,
Saludos.