
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
German Weekdays without Point
Hi,
I am using the weekday()-function to return the weekdays of a given date. So for instance, a Monday is displayed as "Mo.".
How can I remove the "." after "Mo." to just receive "Mo" as weekday?
Thank you!
Accepted Solutions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi, you can replace dot to nothing with replace(weekday(),'.','')
or take only 2 left symbols of it with (left(weekday(), 2))
or in load script, 'Main' tab modify your representation of 'DayNames'


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
The day names should be set in the script on the main tab. normally looks like this
SET DayNames='Mon;Tue;Wed;Thu;Fri;Sat;Sun';
I assume you will see
SET DayNames='Mo.;Tu.;We.;Th.;Fr.;Sa.;Su.';
Change it to what you need and reload

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi, you can replace dot to nothing with replace(weekday(),'.','')
or take only 2 left symbols of it with (left(weekday(), 2))
or in load script, 'Main' tab modify your representation of 'DayNames'
