A Letras

(1 vote)
Número a letras

Install two functions in Calc in the section Text to describe a integer number in spanish or english.
For examples:

=INSPANISH(15) -----> quince
=INSPANISH(13.5) ---> trece

=TOWORDS(15) -----> fifteen
=TOWORDS(13.5)---> thirteen

Instala dos funciones para Calc en la sección Texto que describen la parte entera de un número en español e ingles.
Como ejemplos:

=ALETRAS(15) -----> quince
=ALETRAS(13.5) ---> trece

=ENINGLES(15) -----> fifteen
=ENINGLES(13.5)---> thirteen

Installez deux fonctions dans Calc dans la section du texte pour décrire un nombre entier en espagnol ou Anglais.
Pour exemples:

=ENESPANNOL(15) -----> quince
=ENESPAGNOL(13.5) ---> trece

=ENANGLAIS(15) -----> fifteen
=ENANGLAIS(13.5)---> thirteen

Installare due funzioni in Calc nella sezione di testo per descrivere un intero numero in inglese o spagnolo.
Per esempio:

IMESPANHOL(15) -----> quince
IMESPANHOL(13.5) ---> trece

IMINGLES(15) -----> fifteen
IMINGLES(13.5) ---> thirteen

Instale duas funções em Calc na seção Texto para descrever um número inteiro em espanhol ou Inglês.
Para exemplos:

EMESPANHOL(15) -----> quince
EMESPANHOL(13.5) ---> trece

EMINGLES(15) -----> fifteen
EMINGLES(13.5) ---> thirteen

Download extension
Operating System: System Independent
Compatible with: OpenOffice.org 2.2.0 or higher.
Official release: 1.1.0
Date: 2007-Nov-26
Size: 16.27 KB
License: opensource | Read license
Further product information: Product details

Comments

cant install this extension

I tried to install this extension but i cant. It appears a popup message saying that it cannot install (or load?) my java implementation. Any ideas how to work around this?

Fís. Fermín Franco Medrano
PAC "Ensenada: Sociedad del Conocimiento"
http://ferminfranco.blogspot.com

Instala Java

Hi:

Install Java (http://www.java.com/es/download/)

Saludos:

Instala Java (http://www.java.com/es/download/)

Eduardo Moreno
TOKONHU de México

Problem to activate the extension | Problema al activar...

Today I'm working in Windows XP with OpenOffice.org Novell Edition 2.3.1 and, when activate the extension appear the next message:
(com.sun.star.uno.RuntimeException){{Message="JNI exception ocurred", Context=(com.sun.star.uno.XInterface)@54ad41c(ImplementarionName="com.sun.star.comp.stoc.JavaVirtualMachine")}}
The version of Java in OpenOffice.org is 1.6.0_03
What is wrong?
--------------------------------------------------------------
Hoy estoy trabajando en Windows XP con OpenOffice.org Edición de Novell 2.3.1 y cuando activo la extensión aparece el siguiente mensaje:
(com.sun.star.uno.RuntimeException){{Message="JNI exception ocurred", Context=(com.sun.star.uno.XInterface)@54ad41c(ImplementarionName="com.sun.star.comp.stoc.JavaVirtualMachine")}}
La versión de java en OpenOffice.org es 1.6.0_03
¿Cuál es el error?

Trouble to install the extension | Problema al instalar...

I tried to install your extension, but I have the next message when install or activate:
(com.sun.star.registry.CannotRegisterImplementationException) {{Message = "", Context = (com.sun.star.uno.XInterface)@0}}
and the extension don't work.
In my PC i'm working with linux OpenSuse 10.3 and my OpenOffice.org is 2.3.1 (the last for this distribution)
What I do?

Thanks
---------------
He tratado de instalar tu extensión. pero obtengo el siguiente mensaje al instalarla o activarla:
(com.sun.star.registry.CannotRegisterImplementationException) {{Message = "", Context = (com.sun.star.uno.XInterface)@0}}
y la extensión no trabaja
En mi computador trabajo con OpenSuse 10.3 y mi OpenOffice.org es 2.3.1 (la ultima disponible para esta distribución)
¿Que hago?

Gracias

How to Use this Function To Convert Interger To Words?

I need to change the amount:20,000 to Twenty Thousand In Words Please Help & Guide!

Ready transform number in english.

Download the extensión. Use the function TOWORDS.

Eduardo Moreno
TOKONHU de México

To change amount in english

Hi.

The extensión is writed in Java with NetBeans. The algorit take a number and with "if" do the magic.

Example

if (number == 1) then description = "one";
if (number == 2) then description = "two";
etc.

In spanish, the thounsens add the word "mil"

integer miles;
if (number/1000 > 0 ) then
miles = (number / 1000);

Example:
number = 20,000

number/1000 = 20

.
.
.
if (number = 20) then desription = "twenty";

return desription + "mil";

I stydy the form to describe a number in spanish. Maybe do to english tomorrow.

I hope this help you.

Eduardo Moreno
TOKONHU de México