Well in some of the data im getting back, it has alot of spaces infront of it. It looks something like:

" Data"

I just want "Data", what would I replace to make it so it only contains "Data"? At first I thought it would be something like

NewData = Replace(Data," ", VbNullstring)

but that does not work like I thought it would. Any idea?