Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to convert number to string

Hi Friends,

I have one column with values 01,02,03,87,89,98etc

I want to use match function. How to convert these numbers to string so that It will be easy for me to comparision.

Thanks

Pavan

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Hello

You can use text(number_field) to convert it to string.

If you want this number with the zeros in the left, you can use text(num(number_field,'00')). This way will keep, for example, "01".

Hope it helps.

Regards,

Gabriel

View solution in original post

6 Replies
jpenuliar
Partner - Specialist III
Partner - Specialist III

Numeric to string

see if this is you need.

salto
Specialist II
Specialist II

Hi,

try with Text(Trim(Field))

Hope this helps.

Not applicable
Author

Hi,

you can use text(field) then the values will be converted to string.

alexandros17
Partner - Champion III
Partner - Champion III

If you have 01 you have yet a value in string format, try to add more details to your request

Anonymous
Not applicable
Author

Hello

You can use text(number_field) to convert it to string.

If you want this number with the zeros in the left, you can use text(num(number_field,'00')). This way will keep, for example, "01".

Hope it helps.

Regards,

Gabriel

Not applicable
Author

Hi,

try this

Text(field value)