Grrr. I hate it when end users try to make things harder than they should be for the sake of having something "pretty".
Oh well.
Looking at what you are using (Round(number)/1000000), the first thing that strikes me is that you seem to be missing an argument. I'd expect to see
Round(Number,NumberOfDecimalPlaces)
So this:
[COLOR=blue white]Round(Number / 1000000, 1)[/color]
will return 34.4.
If they really want to see a comma instead, you can use the previous code like this:
[COLOR=blue white]Replace(Round([c1] / 1000000, 1), ".", ",")[/color]
But beware: Using REPLACE will return a STRING, not a number.
[tt]_____
[blue]-John[/blue][/tt]
[tab][red]The plural of anecdote is not data[/red]
Help us help you. Please read FAQ181-2886 before posting.