On Jan 30, 2005, at 7:24 PM, Lennox Jacob wrote:
I have tried
Range.Text = (format(R2, #.##) + " to " + format(R, #.##) ), I did not
expect that to work anyhow.
Well, you forgot the quotes - the second parameter to Format is a
string. So you need:
Range.Text = Format(R2, "#.##") + " to " + Format(R, "#.##")
Seth Willits
------------------------------------------------------------------------
---
President and Head Developer of Freak Software - http://www.freaksw.com
REALbasic Guru at ResExcellence - http://www.resexcellence.com/realbasic
"Great spirits have always encountered violent opposition from mediocre
minds."
-- Albert Einstein
------------------------------------------------------------------------
---
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives of this list here:
<http://www.realsoftware.com/listarchives/lists.html>
|