
Quote from joferar333 on May 12, 2022, 8:00 am@luishp,@asleycruz,@gaev
ESPAÑOL
Hola! hay algun plug o funcion que permita aplicar separador de miles a un numero...
por ejemplo tengo una variable que me trae un numero 2900 hay alguna forma de transformar este numero a 2.900? (separando con punto no coma)
Gracias desde ya
ENGLISH
Hello! There is some plug or function that allows you to apply thousands of thousands to a number ...
For example, I have a variable that brings me a 2900 number, is there any way to transform this number of 2.900? (separating with point does not eat)
thanks!
ESPAÑOL
Hola! hay algun plug o funcion que permita aplicar separador de miles a un numero...
por ejemplo tengo una variable que me trae un numero 2900 hay alguna forma de transformar este numero a 2.900? (separando con punto no coma)
Gracias desde ya
ENGLISH
Hello! There is some plug or function that allows you to apply thousands of thousands to a number ...
For example, I have a variable that brings me a 2900 number, is there any way to transform this number of 2.900? (separating with point does not eat)
thanks!

Quote from roccocogliano on May 12, 2022, 8:27 amtake a look here https://webhelp.visualneo.com/VariableFilters.html
take a look here https://webhelp.visualneo.com/VariableFilters.html

Quote from joferar333 on May 12, 2022, 9:18 am@roccocogliano
Bad this is for visualneo WEB and i need for neobook or visualneo WIN
Thanks
Bad this is for visualneo WEB and i need for neobook or visualneo WIN
Thanks

Quote from roccocogliano on May 12, 2022, 9:25 amok, I'm sorry. I hadn't read carefully.
regards
Rocco
ok, I'm sorry. I hadn't read carefully.
regards
Rocco
Quote from Gaev on May 12, 2022, 5:12 pm@joferar333
There might be a third party plugin for this (I faintly recall this type of enquiry during the NeoBook days.
However, it is possible to accomplish this without a plugin (i.e. using a Subroutine or a Call'able external Function).
Can you clarify your requirement ?
a) does your number/text have decimals ? ... if so, is the decimal separator a dot or a comma ?
b) what is the maximum number you need to handle ? ... 99 million, 999 million or more ?
There might be a third party plugin for this (I faintly recall this type of enquiry during the NeoBook days.
However, it is possible to accomplish this without a plugin (i.e. using a Subroutine or a Call'able external Function).
Can you clarify your requirement ?
a) does your number/text have decimals ? ... if so, is the decimal separator a dot or a comma ?
b) what is the maximum number you need to handle ? ... 99 million, 999 million or more ?

Quote from DaviddeArgentina on May 12, 2022, 5:32 pmThe good old NeoFormatNum plugin...
Greetings from Buenos Aires,
David de Argentina
The good old NeoFormatNum plugin...
Greetings from Buenos Aires,
David de Argentina
Uploaded files:
Quote from joferar333 on May 12, 2022, 11:23 pmHola @davideargentina
muchisimas gracias...
Lo he probado pero solo me transforma una... en mi caso en una pagina tengo 3 numeros por convertir y solo me lo hace con el primero el resto no...
Setvar "[number]" "[total1]" SetVar "[length]" "8" Setvar "[decimals]" "0" Setvar "[milliards]" "3" Setvar "[fill_char]" "$" AE_FormatNum "[number]|[length]|[decimals]|[milliards]|[fill_char]" Setvar "[totalbruto]" "[ae_resultado]" Setvar "[number]" "[total_deuda]" SetVar "[length]" "8" Setvar "[decimals]" "0" Setvar "[milliards]" "3" Setvar "[fill_char]" "$" AE_FormatNum "[number]|[length]|[decimals]|[milliards]|[fill_char]" Setvar "[totalgasto]" "[ae_resultado]" Setvar "[number]" "[real]" SetVar "[length]" "8" Setvar "[decimals]" "0" Setvar "[milliards]" "3" Setvar "[fill_char]" "$" AE_FormatNum "[number]|[length]|[decimals]|[milliards]|[fill_char]" Setvar "[bruto]" "[ae_resultado]"Saludos
Hola @davideargentina
muchisimas gracias...
Lo he probado pero solo me transforma una... en mi caso en una pagina tengo 3 numeros por convertir y solo me lo hace con el primero el resto no...
Setvar "[number]" "[total1]" SetVar "[length]" "8" Setvar "[decimals]" "0" Setvar "[milliards]" "3" Setvar "[fill_char]" "$" AE_FormatNum "[number]|[length]|[decimals]|[milliards]|[fill_char]" Setvar "[totalbruto]" "[ae_resultado]" Setvar "[number]" "[total_deuda]" SetVar "[length]" "8" Setvar "[decimals]" "0" Setvar "[milliards]" "3" Setvar "[fill_char]" "$" AE_FormatNum "[number]|[length]|[decimals]|[milliards]|[fill_char]" Setvar "[totalgasto]" "[ae_resultado]" Setvar "[number]" "[real]" SetVar "[length]" "8" Setvar "[decimals]" "0" Setvar "[milliards]" "3" Setvar "[fill_char]" "$" AE_FormatNum "[number]|[length]|[decimals]|[milliards]|[fill_char]" Setvar "[bruto]" "[ae_resultado]"
Saludos

Quote from DaviddeArgentina on May 13, 2022, 12:13 amLa variable "[length]" tiene que incluir digitos adicionales para incorporar el caracter separador de miles ("." o ",")
En el caso de agregar decimales, hay que agregar a la variable "[length]" tantos caracteres como decimales se agregue, mas un caracter adicional para la coma o el punto decimal.
En tu ejemplo, prueba con agregar a variable "[length]" = 9 en vez de 8
Saludos,
David de Argentina
La variable "[length]" tiene que incluir digitos adicionales para incorporar el caracter separador de miles ("." o ",")
En el caso de agregar decimales, hay que agregar a la variable "[length]" tantos caracteres como decimales se agregue, mas un caracter adicional para la coma o el punto decimal.
En tu ejemplo, prueba con agregar a variable "[length]" = 9 en vez de 8
Saludos,
David de Argentina