Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×
The Claris Museum: The Vault of FileMaker Antiquities at Claris Engage 2025! ×

This topic is 6572 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

Hello there. I've got a bit of a puzzle, maybe somebody has been through this situation and can help me out. Because frankly, I am stumped.

I've created a large database in Spanish. Within the database is an intricate sequence of Date Fields and Calculation Fields (for Dates), displayed by Filemaker default in English. Up until now, this little detail has been of little to no consequence.

However, I now need to print out some Records, and they have to have the Dates displayed in Spanish.

For example, I need a Calculation Field result to display:

"Marzo 11, 2005"

Instead of:

"Marzo 11, 2005"

Is there a way to change the language?

Thank you!

Posted

Hello there. I've got a bit of a puzzle, maybe somebody has been through this situation and can help me out. Because frankly, I am stumped.

I've created a large database in Spanish. Within the database is an intricate sequence of Date Fields and Calculation Fields (for Dates), displayed by Filemaker default in English. Up until now, this little detail has been of little to no consequence.

However, I now need to print out some Records, and they have to have the Dates displayed in Spanish.

For example, I need a Calculation Field result to display:

"Marzo 11, 2005"

Instead of:

"Marzo 11, 2005"

Is there a way to change the language?

Thank you!

Posted

Hello there. I've got a bit of a puzzle, maybe somebody has been through this situation and can help me out. Because frankly, I am stumped.

I've created a large database in Spanish. Within the database is an intricate sequence of Date Fields and Calculation Fields (for Dates), displayed by Filemaker default in English. Up until now, this little detail has been of little to no consequence.

However, I now need to print out some Records, and they have to have the Dates displayed in Spanish.

For example, I need a Calculation Field result to display:

"Marzo 11, 2005"

Instead of:

"Marzo 11, 2005"

Is there a way to change the language?

Thank you!

Posted

Include this in your calc to convert the month.

Choose( (Position( "janfebmaraprmayjunjulaugsepoctnovdec", Left( MonthName(datefield), 3 ), 0, 1 ) + 2) / 3 - 1, "enero", "febrero", "marzo", "abril", "mayo", "junio", "julio", "agosto", "septiembre", "octubre", "noviembre", "diciembre" )

Posted

Include this in your calc to convert the month.

Choose( (Position( "janfebmaraprmayjunjulaugsepoctnovdec", Left( MonthName(datefield), 3 ), 0, 1 ) + 2) / 3 - 1, "enero", "febrero", "marzo", "abril", "mayo", "junio", "julio", "agosto", "septiembre", "octubre", "noviembre", "diciembre" )

Posted

Include this in your calc to convert the month.

Choose( (Position( "janfebmaraprmayjunjulaugsepoctnovdec", Left( MonthName(datefield), 3 ), 0, 1 ) + 2) / 3 - 1, "enero", "febrero", "marzo", "abril", "mayo", "junio", "julio", "agosto", "septiembre", "octubre", "noviembre", "diciembre" )

Posted

What an amazing workaround! I've never seen anything quite like it, never in a thousand years would have figured it out.

Thank You!!!

Or maybe I should say

Muchas Gracias!!!

smile.gif

Posted

What an amazing workaround! I've never seen anything quite like it, never in a thousand years would have figured it out.

Thank You!!!

Or maybe I should say

Muchas Gracias!!!

smile.gif

Posted

What an amazing workaround! I've never seen anything quite like it, never in a thousand years would have figured it out.

Thank You!!!

Or maybe I should say

Muchas Gracias!!!

smile.gif

Posted

For anyone that might need this at any time, here's how I did the full calculation for getting the result in Spanish. Mine's a bit complex, with dates piled up one on top of another and whatnot, so I'll make the example less complicated, so that just the general idea comes across.

Let's say you have a Birthdate Field. One of your Records displays, let's say, "March 11, 2005", and you want to create another Field that will display "Marzo 11 de 2005".

1. Create a Calculation Field. Calculation Result must be in Text.

2. Type this: (Choose( (Position( "janfebmaraprmayjunjulaugsepoctnovdec", Left( MonthName(Birthdate), 3 ), 0, 1 ) + 2) / 3 - 1, "Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre" )) & " " & Day(Birthdate) & " de " & Year(Birthdate)

Posted

For anyone that might need this at any time, here's how I did the full calculation for getting the result in Spanish. Mine's a bit complex, with dates piled up one on top of another and whatnot, so I'll make the example less complicated, so that just the general idea comes across.

Let's say you have a Birthdate Field. One of your Records displays, let's say, "March 11, 2005", and you want to create another Field that will display "Marzo 11 de 2005".

1. Create a Calculation Field. Calculation Result must be in Text.

2. Type this: (Choose( (Position( "janfebmaraprmayjunjulaugsepoctnovdec", Left( MonthName(Birthdate), 3 ), 0, 1 ) + 2) / 3 - 1, "Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre" )) & " " & Day(Birthdate) & " de " & Year(Birthdate)

Posted

For anyone that might need this at any time, here's how I did the full calculation for getting the result in Spanish. Mine's a bit complex, with dates piled up one on top of another and whatnot, so I'll make the example less complicated, so that just the general idea comes across.

Let's say you have a Birthdate Field. One of your Records displays, let's say, "March 11, 2005", and you want to create another Field that will display "Marzo 11 de 2005".

1. Create a Calculation Field. Calculation Result must be in Text.

2. Type this: (Choose( (Position( "janfebmaraprmayjunjulaugsepoctnovdec", Left( MonthName(Birthdate), 3 ), 0, 1 ) + 2) / 3 - 1, "Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre" )) & " " & Day(Birthdate) & " de " & Year(Birthdate)

Posted

Note that you could make Choose( (Position( "janfebmaraprmayjunjulaugsepoctnovdec", Left( MonthName(BirthDate), 3 ), 0, 1 ) + 2) / 3 - 1, "enero", "febrero", marzo", "abril", "mayo", "junio", "julio", "agosto", "septiembre", "octubre", "noviembre", "diciembre" ) its own calc and then each instance of conversion would only require

PositionCalc & " " & Day(BirthDate) & " de " & Year(BirthDate)

Also, months are not capitalized in Spanish, which is why I left them as lowercase.

Posted

Note that you could make Choose( (Position( "janfebmaraprmayjunjulaugsepoctnovdec", Left( MonthName(BirthDate), 3 ), 0, 1 ) + 2) / 3 - 1, "enero", "febrero", marzo", "abril", "mayo", "junio", "julio", "agosto", "septiembre", "octubre", "noviembre", "diciembre" ) its own calc and then each instance of conversion would only require

PositionCalc & " " & Day(BirthDate) & " de " & Year(BirthDate)

Also, months are not capitalized in Spanish, which is why I left them as lowercase.

Posted

Note that you could make Choose( (Position( "janfebmaraprmayjunjulaugsepoctnovdec", Left( MonthName(BirthDate), 3 ), 0, 1 ) + 2) / 3 - 1, "enero", "febrero", marzo", "abril", "mayo", "junio", "julio", "agosto", "septiembre", "octubre", "noviembre", "diciembre" ) its own calc and then each instance of conversion would only require

PositionCalc & " " & Day(BirthDate) & " de " & Year(BirthDate)

Also, months are not capitalized in Spanish, which is why I left them as lowercase.

Posted

Good call. I wasn't paying attention to the formatting.

Day(BirthDate) & " de " & MonthCalc & " " & Year(BirthDate)

Posted

Good call. I wasn't paying attention to the formatting.

Day(BirthDate) & " de " & MonthCalc & " " & Year(BirthDate)

Posted

Good call. I wasn't paying attention to the formatting.

Day(BirthDate) & " de " & MonthCalc & " " & Year(BirthDate)

  • 1 year later...
Posted

While we're on the sabject of Spanish, would anybody have a formula for putting Spanish numbers into letters. I'm trying to help an acquaintencne to get her invoicing system up to date ?

Thanks,

Geo

Posted

That's strange?

What do you mean there wasn't any thing there. I used comment's link that he labeled "[color:red]This" and it contained a lot of information. BTW, I don't see a [color:red]here anywhere?

Lee

Posted

I really don't know what to say. The thread I linked to has at least two versions of such formula. Short of gift-wrapping them and hiring a clown to deliver them to your house, I can't see how I can help you further.

Posted

As the content of some of my answers would indicate, I have a number of clown costumes that you can borrow should you wish to save a little money on the carriage charges

:party:

Posted

:giggle: We could include the Break-Your-Calc-While-You-Wait service as well!

In all fairness, maybe they didn't see that there are two pages to that thread. The Spanish calcs are on page 2.

LaRetta

This topic is 6572 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.