Hola !! Estoy desarrollando algunos reportes en Crystal Reports y cuando hice un reporte de tipo Cross Tab, debia de unir los campos ID y NOMBRE, al hacerlo me dio el siguiente formato:
totext({emp_id})+' - '+{emp_name} --> 2,345.00 - Juan PerezAsi que necesitaba cambiar el formato del Numero, Gracias a Google y algunos minutos de busqueda encontre este
SITIO y ahi explican los parametros de la sintaxis de la funcion ToText.
ToText(x,y,z) --> x = Numero, y = Numero de Decimales, z = Separador de Miles
Ya con esa informacion finalmente pude cambiar el formato del Numero para que quedara tal como se requeria
ToText({emp_id},0,'')+' - '+{emp_name} --> 2345 - Juan Perez----------------------------------------------------------------------------------
Hi !! I am developing some reports in Crystal Reports, And when I create a Cross Tab report, I need to join Employee ID + Employee Name, and I Got the following format:
totext({emp_id})+' - '+{emp_name} --> 2,345.00 - Juan Perez
So, I need to remove format from the ID, tnx to google and a few minutes I Finally found this
SITE and they explain the parameters of TOTEXT instruction.
ToText(x,y,z) --> x = Number, y = Number of Decimals, z = Thousands Separatos Char
And with this information I finally manage to set up Number Format in Crystal Reports.
totext({emp_id},0,'')+' - '+{emp_name} --> 2345 - Juan Perez