Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 TinaH
		
			TinaH
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		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!
 justISO
		
			justISO
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		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_Little
		
			Mark_Little
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		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
 justISO
		
			justISO
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		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'
