the arrows move my highlight up/down -
This is a very confusing thing to do because the report is renaming the section as well as 'moving' it. Or something like that. Just highlight what you want to move and hit the arrow and ignore the view box, or you'll get confused.
I'm not saying your install is not flawed, but that screen is confusing.
Have you said 'ok' to this and looked at your report to see what the results are?
The number to string stuff is ALSO confusing at first. Basically, if you change a number to text, you are probably going to see commas and sometimes even .00 !
You're going to have to do some parsing of the totext(number) in order for it to look right before appending it to your address.
Something like:
replace(totext(number),",",""
Ok, that looks confusing.
The replace format is:
replace(inputstring,findstring,replacestring)
so
your inputstring is the totext(number)
your findstring is the comma, aka: ","
your replacestring is nothing, aka: ""
Good luck!