Postby EViews Chris » Tue Mar 04, 2014 12:16 pm
I'm afraid you'll have to get rid of those spaces inside the numbers somehow. I don't remember anyone asking us to read in a numeric field formatted like that before and there's currently no built in support for it.
Actually, it turns out they're not ordinary spaces (character code 32) but non-breaking spaces (character code 160) inside your fields which makes it even less likely that we'll handle this automatically.
I think your only option within EViews is to translate the series yourself after loading them in, something like this
series import_av_varor_ = @val(@replace(import_av_varor, @chr(160), ""))
You could loop over all the series in a program by putting the series in a group and translating them within a loop.