Ayuda para convertir numero en texto en access 2007

Ya he revisado en internet y encontré num2text ya lo puse y funciona solo que me redondea los números osea no me maneja decimos ejemplo 120.56 da ciento veinteyuno según coloque los códigos en donde devén de ir pero pues el resultado no es lo que estoy buscan do ojala tengas tiempo para poder auxiliarme de antemano te lo agradezco.

1 respuesta

Respuesta
2
Lo mejor que puedes hacer para la lectura de un numero es programarlo tú mismo en un módulo como una función. En este te paso un código que utilizo y funciona bastante bien para los fines que creo que te servirá (sin redondeo a entero, sino con 2 decimales), para que te funcione debes crear un nuevo módulo en tu bd, seleccionar y copiar el código, y luego pegar en el módulo abierto, compilar y guardar y volver a Access, luego en tu formulario o en tu informe llamas a la función en tu origen de datos =letra(TU NUMERO AQUÍ O TU CAMPO NUMÉRICO) Por ejemplo: tienes un campo 'total' que te da un valor de 120,56; entonces vas a colocar en otro textbox independiente el origen de datos =letra('total') y te va leer 'ciento veinte con cincuenta y seis céntimos.
El código es el siguiente:
'------------------------------------
Option Compare Database
Function letra(ByVal Numero As Double)
Dim Texto
Dim Millones
Dim Miles
Dim Cientos
Dim Decimales
Dim Cadena
Dim CadMillones
Dim CadMiles
Dim CadCientos
Dim caddecimales
Texto = Round(Numero, 2)
Texto = FormatNumber(Texto, 2, vbTrue, vbFalse, vbTrue)
Texto = Right(Space(14) & Texto, 14)
Millones = Mid(Texto, 1, 3)
Miles = Mid(Texto, 5, 3)
Cientos = Mid(Texto, 9, 3)
Decimales = Mid(Texto, 13, 2)
CadMillones = ConvierteCifra(Millones, False)
CadMiles = ConvierteCifra(Miles, False)
CadCientos = ConvierteCifra(Cientos, True)
caddecimales = ConvierteDecimal(Decimales)
If Trim(CadMillones) > "" Then
    If Trim(CadMillones) = "UN" Then
    CadMillones = "UN"
    Cadena = Cadena & CadMillones & " MILLON"
    Else
    Cadena = CadMillones & " MILLONES"
    End If
End If
If Trim(CadMiles) > "" Then
    If Trim(CadMiles) = "UN" Then
    CadMiles = ""
    Cadena = Cadena & "" & CadMiles & "MIL"
    CadMiles = "UN"
    Else
    Cadena = Cadena & " " & CadMiles & " MIL"
    End If
End If
If Trim(CadMiles) > "001" Then
    CadMiles = "MIL"
End If
If Decimales = "00" Then
    If Trim(CadMillones & CadMiles & CadCientos & caddecimales) = "UN" Then
    Cadena = Cadena '& "UNO "
    Else
        If Miles & Cientos = "000000" Then
        Cadena = Cadena & " " & Trim(CadCientos)
        Else
        Cadena = Cadena & " " & Trim(CadCientos)
        End If
    letra = Trim(Cadena)
    End If
Else
    If Trim(CadMillones & CadMiles & CadCientos & caddecimales) = "UN" Then
    Cadena = Cadena & "UNO " & "CON " & Trim(caddecimales)
    Else
        If Millones & Miles & Cientos & Decimales = "000000" Then
        Cadena = StrConv(Cadena & " " & Trim(CadCientos) & " CON " & ConvierteDecimal(Decimales) & " CÉNTIMOS", vbLowerCase)
        Else
        Cadena = Cadena & " " & Trim(CadCientos) & " CON " & ConvierteDecimal(Decimales) & " CÉNTIMOS"
        End If
    letra = Trim(Cadena)
    End If
    letra = Trim(Cadena)
End If
letra = Trim(Cadena)
Debug.Print Cadena
End Function
Function ConvierteCifra(Texto, IsCientos As Boolean)
Dim Centena
Dim Decena
Dim Unidad
Dim txtCentena
Dim txtDecena
Dim txtUnidad
Centena = Mid(Texto, 1, 1)
Decena = Mid(Texto, 2, 1)
Unidad = Mid(Texto, 3, 1)
Select Case Centena
Case "1"
txtCentena = "CIEN"
If Decena & Unidad <> "00" Then
txtCentena = "CIENTO"
End If
Case "2"
txtCentena = "DOSCIENTOS"
Case "3"
txtCentena = "TRESCIENTOS"
Case "4"
txtCentena = "CUATROCIENTOS"
Case "5"
txtCentena = "QUINIENTOS"
Case "6"
txtCentena = "SEISCIENTOS"
Case "7"
txtCentena = "SETECIENTOS"
Case "8"
txtCentena = "OCHOCIENTOS"
Case "9"
txtCentena = "NOVECIENTOS"
End Select
Select Case Decena
Case "1"
txtDecena = "DIEZ"
Select Case Unidad
Case "1"
txtDecena = "ONCE"
Case "2"
txtDecena = "DOCE"
Case "3"
txtDecena = "TRECE"
Case "4"
txtDecena = "CATORCE"
Case "5"
txtDecena = "QUINCE"
Case "6"
txtDecena = "DIECISEIS"
Case "7"
txtDecena = "DIECISIETE"
Case "8"
txtDecena = "DIECIOCHO"
Case "9"
txtDecena = "DIECINUEVE"
End Select
Case "2"
txtDecena = "VEINTE"
If Unidad <> "0" Then
txtDecena = "VEINTI"
End If
Case "3"
txtDecena = "TREINTA"
If Unidad <> "0" Then
txtDecena = "TREINTA Y "
End If
Case "4"
txtDecena = "CUARENTA"
If Unidad <> "0" Then
txtDecena = "CUARENTA Y "
End If
Case "5"
txtDecena = "CINCUENTA"
If Unidad <> "0" Then
txtDecena = "CINCUENTA Y "
End If
Case "6"
txtDecena = "SESENTA"
If Unidad <> "0" Then
txtDecena = "SESENTA Y "
End If
Case "7"
txtDecena = "SETENTA"
If Unidad <> "0" Then
txtDecena = "SETENTA Y "
End If
Case "8"
txtDecena = "OCHENTA"
If Unidad <> "0" Then
txtDecena = "OCHENTA Y "
End If
Case "9"
txtDecena = "NOVENTA"
If Unidad <> "0" Then
txtDecena = "NOVENTA Y "
End If
End Select
If Decena <> "1" Then
Select Case Unidad
Case "1"
If IsCientos = False Then
txtUnidad = "UN"
Else
txtUnidad = "UNO"
End If
Case "2"
txtUnidad = "DOS"
Case "3"
txtUnidad = "TRES"
Case "4"
txtUnidad = "CUATRO"
Case "5"
txtUnidad = "CINCO"
Case "6"
txtUnidad = "SEIS"
Case "7"
txtUnidad = "SIETE"
Case "8"
txtUnidad = "OCHO"
Case "9"
txtUnidad = "NUEVE"
End Select
End If
ConvierteCifra = txtCentena & " " & txtDecena & txtUnidad
End Function
Function ConvierteDecimal(Texto)
Dim Decenadecimal
Dim Unidaddecimal
Dim txtDecenadecimal
Dim txtUnidaddecimal
Decenadecimal = Mid(Texto, 1, 1)
Unidaddecimal = Mid(Texto, 2, 1)
Select Case Decenadecimal
Case "1"
txtDecenadecimal = "DIEZ"
Select Case Unidaddecimal
Case "1"
txtDecenadecimal = "ONCE"
Case "2"
txtDecenadecimal = "DOCE"
Case "3"
txtDecenadecimal = "TRECE"
Case "4"
txtDecenadecimal = "CATORCE"
Case "5"
txtDecenadecimal = "QUINCE"
Case "6"
txtDecenadecimal = "DIECISEIS"
Case "7"
txtDecenadecimal = "DIECISIETE"
Case "8"
txtDecenadecimal = "DIECIOCHO"
Case "9"
txtDecenadecimal = "DIECINUEVE"
End Select
Case "2"
txtDecenadecimal = "VEINTE"
If Unidaddecimal <> "0" Then
txtDecenadecimal = "VEINTI"
End If
Case "3"
txtDecenadecimal = "TREINTA"
If Unidaddecimal <> "0" Then
txtDecenadecimal = "TREINTA Y "
End If
Case "4"
txtDecenadecimal = "CUARENTA"
If Unidaddecimal <> "0" Then
txtDecenadecimal = "CUARENTA Y "
End If
Case "5"
txtDecenadecimal = "CINCUENTA"
If Unidaddecimal <> "0" Then
txtDecenadecimal = "CINCUENTA Y "
End If
Case "6"
txtDecenadecimal = "SESENTA"
If Unidaddecimal <> "0" Then
txtDecenadecimal = "SESENTA Y "
End If
Case "7"
txtDecenadecimal = "SETENTA"
If Unidaddecimal <> "0" Then
txtDecenadecimal = "SETENTA Y "
End If
Case "8"
txtDecenadecimal = "OCHENTA"
If Unidaddecimal <> "0" Then
txtDecenadecimal = "OCHENTA Y "
End If
Case "9"
txtDecenadecimal = "NOVENTA"
If Unidaddecimal <> "0" Then
txtDecenadecimal = "NOVENTA Y "
End If
End Select
If Decenadecimal <> "1" Then
Select Case Unidaddecimal
Case "1"
    If Len(Texto) > 1 Then
        txtUnidaddecimal = "UN"
    Else
        txtUnidaddecimal = "UNO"
    End If
Case "2"
txtUnidaddecimal = "DOS"
Case "3"
txtUnidaddecimal = "TRES"
Case "4"
txtUnidaddecimal = "CUATRO"
Case "5"
txtUnidaddecimal = "CINCO"
Case "6"
txtUnidaddecimal = "SEIS"
Case "7"
txtUnidaddecimal = "SIETE"
Case "8"
txtUnidaddecimal = "OCHO"
Case "9"
txtUnidaddecimal = "NUEVE"
End Select
End If
If Decenadecimal = 0 And Unidaddecimal = 0 Then
ConvierteDecimal = ""
Else
ConvierteDecimal = txtDecenadecimal & txtUnidaddecimal
End If
End Function
'------------------------
Espero que te sirva. Lo puedes convertir a minúsculas o mayúsculas usando strconv() en tu cadena.
Buen día y gracias por la ayuda aun no la llevo a cabo pero lo haré después de enviar esto, ¿ahora me dices que copie todo tu código osea que borro todo el mio?
¿Otra pregunta abusando un poco es recomendable que la base que hice la haga ejecutable o no?
Espero no te quite mucho tu tiempo saludos y graciAS
pd. me darías tu correo
El mio [email protected]
No borres ningún código tuyo. Crea un nuevo modulo al cual supongamos llamaras 'ModuloLetras' y dentro de este modulo pega el código que te envíe. Y desde tu form o tu report llamas a la función como te indique en la respuesta anterior.
En cuanto a lo de 'ejecutable' en Access tienes la opción de ocultar tu código al guardar tu bd como mde, el cual protege bastante bien tus códigos, formularios y reportes. Ahora, si quieres un ejecutable con extensión 'exe' deberías de programar en visual o cualquier otro compilador que genere proyectos exe. Yo actualmente estoy usando el Visual Studio Professional 2010 y hasta ahora va bien.
En cuanto al correo ya lo postee en otras respuestas que están disponibles en esta web.
Ok ya lo coloque y me manda error.
Estos son los códigos que no tengo.
Public Function Num2Text(ByVal value As Double) As String
Select Case value
Case 0: Num2Text = "CERO"
Case 1: Num2Text = "UN"
Case 2: Num2Text = "DOS"
Case 3: Num2Text = "TRES"
Case 4: Num2Text = "CUATRO"
Case 5: Num2Text = "CINCO"
Case 6: Num2Text = "SEIS"
Case 7: Num2Text = "SIETE"
Case 8: Num2Text = "OCHO"
Case 9: Num2Text = "NUEVE"
Case 10: Num2Text = "DIEZ"
Case 11: Num2Text = "ONCE"
Case 12: Num2Text = "DOCE"
Case 13: Num2Text = "TRECE"
Case 14: Num2Text = "CATORCE"
Case 15: Num2Text = "QUINCE"
Case Is < 20: Num2Text = "DIECI" & Num2Text(value - 10)
Case 20: Num2Text = "VEINTE"
Case Is < 30: Num2Text = "VEINTI" & Num2Text(value - 20)
Case 30: Num2Text = "TREINTA"
Case 40: Num2Text = "CUARENTA"
Case 50: Num2Text = "CINCUENTA"
Case 60: Num2Text = "SESENTA"
Case 70: Num2Text = "SETENTA"
Case 80: Num2Text = "OCHENTA"
Case 90: Num2Text = "NOVENTA"
Case Is < 100: Num2Text = Num2Text(Int(value \ 10) * 10) & " Y " & Num2Text(value Mod 10)
Case 100: Num2Text = "CIEN"
Case Is < 200: Num2Text = "CIENTO " & Num2Text(value - 100)
Case 200, 300, 400, 600, 800: Num2Text = Num2Text(Int(value \ 100)) & "CIENTOS"
Case 500: Num2Text = "QUINIENTOS"
Case 700: Num2Text = "SETECIENTOS"
Case 900: Num2Text = "NOVECIENTOS"
Case Is < 1000: Num2Text = Num2Text(Int(value \ 100) * 100) & " " & Num2Text(value Mod 100)
Case 1000: Num2Text = "MIL"
Case Is < 2000: Num2Text = "MIL " & Num2Text(value Mod 1000)
Case Is < 1000000: Num2Text = Num2Text(Int(value \ 1000)) & " MIL"
If value Mod 1000 Then Num2Text = Num2Text & " " & Num2Text(value Mod 1000)
Case 1000000: Num2Text = "UN MILLON"
Case Is < 2000000: Num2Text = "UN MILLON " & Num2Text(value Mod 1000000)
Case Is < 1000000000000#: Num2Text = Num2Text(Int(value / 1000000)) & " MILLONES "
If (value - Int(value / 1000000) * 1000000) Then Num2Text = Num2Text & " " & Num2Text(value - Int(value / 1000000) * 1000000)
Case 1000000000000#: Num2Text = "UN BILLON"
Case Is < 2000000000000#: Num2Text = "UN BILLON " & Num2Text(value - Int(value / 1000000000000#) * 1000000000000#)
Case Else: Num2Text = Num2Text(Int(value / 1000000000000#)) & " BILLONES"
If (value - Int(value / 1000000000000#) * 1000000000000#) Then Num2Text = Num2Text & " " & Num2Text(value - Int(value / 1000000000000#) * 1000000000000#)
End Select
End Function
Y después para llamar el código manejo este y creo según yo claro que aquí es donde esta el error.
Private Sub Texto106_AfterUpdate()
Dim NumText As String
Dim CENT As Integer
Dim Entero As Integer
Entero = Int(InvoiceTotal) 'aqui dejo solo entero para que no redondee
NumTexto = Num2Text() 'aqui es donde llama la funcion de conversion
CENT = (InvoiceTotal - Int(InvoiceTotal)) * 100 'aqui saco los decimales

If CENT >= 10 Then
Me![Cantidad en letra] = "(" & NumTexto & " PESOS " & "/100 M.N)" 'aqui mando a imprimir a un campo independiente que no estoy guardando cuando el decimal es .10 o mayor y en el siguiente else se manda cuando es menor le agrego un 0 a la izquierda unicamente
Else
Me![Cantidad en letra] = "(" & NumTexto & " PESOS 0" & "/100 M.N)"
Num2Text = Num2Text & " PESOS"
End Sub
HELP prometo no molestar más.
Y no programo en visual porque todavía soy muy novato.
A mi parecer esta ok, pero me parece que hiciste algunos cambios en tu código que te envíe.
Era copiar y pegar. Compilar en Depurar, luego guardar. Poner en tu informe o formulario en cualquier evento la función y ya iba a funcionarte. Depura tu código y pon un punto de interrupción en el evento after_update para mirar donde te salta el error.

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas