Hello,
I have to pass a field in a report which is a combination of the service ID and Service date. I know that I can remove the slashes from the date field and the decimals from the number field via formatting, but I need to concatenate the fields so that 08/07/2012 1234 becomes 123408072012.
I used totext({DateField),"ddmmyyyy", but instead of 08072012 I got 06002012 , which is not at all what i expected.
When concatenating them {ServiceID}&totext({ServiceDate},"ddmmyyyy")
I get 1,234.0006002012
I want to remove the comma and decimal from the ServiceID and the slashes from the ServiceDate.
I have to pass a field in a report which is a combination of the service ID and Service date. I know that I can remove the slashes from the date field and the decimals from the number field via formatting, but I need to concatenate the fields so that 08/07/2012 1234 becomes 123408072012.
I used totext({DateField),"ddmmyyyy", but instead of 08072012 I got 06002012 , which is not at all what i expected.
When concatenating them {ServiceID}&totext({ServiceDate},"ddmmyyyy")
I get 1,234.0006002012
I want to remove the comma and decimal from the ServiceID and the slashes from the ServiceDate.