
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
Accepted Solutions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
see if this is you need.


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
try with Text(Trim(Field))
Hope this helps.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
you can use text(field) then the values will be converted to string.


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
If you have 01 you have yet a value in string format, try to add more details to your request

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
try this
Text(field value)
