Jump to content
View in the app

A better way to browse. Learn more.

FMForums.com

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

language specific date format

Featured Replies

Hi,

I need to put the same dates (from a field) on two reports - one report is in English, one is in German. The English format should be "December 24, 2006", the German format should be "24. Dezember 2006". Any ideas how to solve that?

Thank you

Berny

You can specify the date format for each instance of the date field. Use specify date format.

  • Author

The problem is that the format has to be language specific - try to set a date instance to German format, not possible when you are running the application on English settings.

Cheers

Berny

  • Author

I am sure there are smarter solutions to that - but here is what I did as an interim:

I added an additional calculation filed with result as text - this calculation translates the German format into English format:

dateAsTextE=

Case

(MonthName (dateField)="Jänner";"January "&Day(dateField)&”, ”&Year(dateField);

MonthName (dateField)="Februar";"February "&Day(dateField)&”, “&Year(dateField);

MonthName (dateField)="März";"March "&Day(dateField)&”, “&Year(dateField);

MonthName (dateField)="April";"April "&Day(dateField)&”, “&Year(dateField);

MonthName (dateField)="Mai";"May "&Day(dateField)&”, “&Year(dateField);

MonthName (dateField)="Juni";"June "&Day(dateField)&”, “&Year(dateField);

MonthName (dateField)="Juli";"July "&Day(dateField)&”, “&Year(dateField);

MonthName (dateField)="August";" August "&Day(dateField)&”, “&Year(dateField);

MonthName (dateField)="September";"September "&Day(dateField)&”, “&Year(dateField);

MonthName (dateField)="Oktober";"October "&Day(dateField)&”, “&Year(dateField);

MonthName (dateField)="November";"November "&Day(dateField)&”, “&Year(dateField);

MonthName (dateField)="Dezember";"December "&Day(dateField)&”, “&Year(dateField);

"")

How about:

Choose ( Month ( dateField ) - 1 ; "January " ; "February " ; "March " ; "April " ; "May " ; "June " ; "July " ; "August " ; "September " ; "October " ; "November " ; "December " )

&

Day ( dateField ) &”, “ & Year ( dateField )

This will also work if the file is in French or any other langauge.

Edited by Guest
Fixed a blaring omission (thanks, LaRetta!)

Create an account or sign in to comment

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.