LibreOffice 25.8 Súgó
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.
| Nevesített konstans | Érték | Leírás | 
|---|---|---|
| vbUseSystemDayOfWeek | 0 | Use National Language Support (NLS) API setting | 
| vbSunday | 1 | Vasárnap (alapértelmezett) | 
| vbMonday | 2 | Hétfő | 
| vbTuesday | 3 | Kedd | 
| vbWednesday | 4 | Szerda | 
| vbThursday | 5 | Csütörtök | 
| vbFriday | 6 | Péntek | 
| vbSaturday | 7 | Szombat | 
Nincs
        REM  *****  BASIC  *****
        Option VBASupport 1
        Sub Example_WeekdayName
         Dim tgf as Integer
         tgf = 6
         print tgf &" "& WeekdayName(tgf,False,vbSunday)
        End Sub