How to convert Number to String?

Hi,

I want to convert a number to string.
Is there any function in BO for the same?

I am having the following requirement.
I have a number. I want to display last 2 digits. I want to do this at the Reporting layer.


GowthamSen :india: (BOB member since 2006-08-31)

Hi,

I got the answer from BOB. Here is the link.

Thanks to Marek. :wave:


GowthamSen :india: (BOB member since 2006-08-31)

Hi,

If you want to get only the last 2 digits from the number then use not only FormatNumber() function for a conversion of a number to a string but also Right() function to get the last 2 characters from the string.

The formula should like something like this:

=Right(FormatNumber(<your number variable>,"0"),2)

I hope this helps.


Marek Chladny :slovakia: (BOB member since 2003-11-27)

Hi Marek,

Thank you very much.
I did the same way. :+1:


GowthamSen :india: (BOB member since 2006-08-31)