LibreOffice 25.2 Help
The WeekdayName function returns the weekday name of a specified day of the week.
        WeekdayName(Weekday as Integer [,Abbreviate as Boolean [,FirstDayofWeek as Integer]])
    String
Weekday: Value from 1 to 7, Monday to Sunday, whose Week Day Name need to be calculated.
Abbreviate: Optional. A Boolean value that indicates if the weekday name is to be abbreviated.
FirstDayofWeek: Optional. Specifies the first day of the week.
| Named constant | តម្លៃ | ការពិពណ៌នា | 
|---|---|---|
| vbUseSystemDayOfWeek | 0 | Use National Language Support (NLS) API setting | 
| vbSunday | 1 | Sunday (default) | 
| vbMonday | 2 | ថ្ងៃច័ន្ទ | 
| vbTuesday | 3 | ថ្ងៃអង្គារ | 
| vbWednesday | 4 | ថ្ងៃពុធ | 
| vbThursday | 5 | ថ្ងៃព្រហស្បតិ៍ | 
| vbFriday | 6 | សុក្រ | 
| vbSaturday | 7 | សៅរ៍ | 
គ្មាន
        REM  *****  BASIC  *****
        Option VBASupport 1
        Sub Example_WeekdayName
         Dim tgf as Integer
         tgf = 6
         print tgf &" "& WeekdayName(tgf,False,vbSunday)
        End Sub