..Offset(3, 0).Value = "For " & P & " numbers there are " & _
Right(space(15) & Format(tly,"#,##0"),15) & _
" x different values of " & cmb & " numbers. "
Would be the direction I would go. With proportionally spaced fonts, it
would be difficult to get exact. If you use courier new, it would work.
Perhaps something similar for "cmb" and "P" possibly - you know what you
want better than I. #,###,##0 is redundant. #,##0 will do the same.
? format("1000000000","#,###,##0")
1,000,000,000
? format("1000000000","#,##0")
1,000,000,000

Signature
Regards,
Tom Ogilvy
> Hi everyone,
>
[quoted text clipped - 14 lines]
> All the Best.
> Paul
Paul Black - 17 Sep 2007 13:18 GMT
Thanks Tom,
> ..Offset(3, 0).Value = "For " & P & " numbers there are " & _
> Right(space(15) & Format(tly,"#,##0"),15) & _
> " x different values of " & cmb & " numbers.
... does do exactly as I have requested, thank you.
I normally use "Tahoma", which as you quite rightly said, does not
align them correctly.
Thanks Again.
All the Best.
Paul
On Sep 17, 11:30 am, Tom Ogilvy <TomOgi...@discussions.microsoft.com>
wrote:
> ..Offset(3, 0).Value = "For " & P & " numbers there are " & _
> Right(space(15) & Format(tly,"#,##0"),15) & _
[quoted text clipped - 35 lines]
>
> - Show quoted text -
Paul Black - 18 Sep 2007 08:42 GMT
Hi Tom,
One thing I do know is that if you use the Format 0;0;; it hides the
zeros in a Worksheet, but I don't think it is relevant in this
situation because the figures output are within a string.
Thanks in Advance.
All the Best.
Paul
> Thanks Tom,
>
[quoted text clipped - 54 lines]
>
> - Show quoted text -