• Merhaba Ziyaretçi,
    Microsoft 365 Uygulamaları ile ilgili yeni haberler, dikkat çekici konular, ilgi ile takip edeceğiniz yazılar için.

    Abone Olun
  • ESTE - Microsoft Office Eğitimleri

    Yeni yıl Microsoft Office Eğitim planlarınız için bütçenizi oluşturmadan önce ESTE eğitim kalitesi ile tanışın. 🙌
    Kullanıcıların ihtiyacı olan yazılı materyal, dosya ve video kaynağı desteğimiz ile tüm ofis çalışanlarının iş süreçlerini rahatlatacak eğitimler planlayın. 🎯
    Microsoft Office eğitimlerimiz hakkında detaylı bilgi için bize ulaşın.

    👉 Microsoft Office Eğitim Talebi

Makale MONTH

Bu Makale Yararlı Oldu mu?

  • Evet

  • Hayır


Sonuçlar yalnızca oylamadan sonra görülebilir.

Murat OSMA

Yönetici
Site Yöneticisi
Katılım
25 May 2018
Mesajlar
1,504
En iyi yanıt
13
Puanları
113
Konum
İstanbul
Web sitesi
excelarsivi.com
Ad Soyad
Murat OSMA
Office Vers.
Office 365 TR+EN
MONTH ( Date )

Belirli bir tarihten ay sayısını döndürür. (Integer)


Date

Ay sayısını almak istediğiniz tarih. (Date)

Açıklamalar
* Date herhangi bir tarih, sayısal veya metin ifadesi olabilir.
* Date Null ise, Null değer döndürülür.
* Döndürülen değer 1 ile 12 arasındadır.

Örnek Kullanım
PHP:
Sub ExcelTurkey()
    Dim Tarih As Date
    Tarih = 32616
    MsgBox Month(Tarih)  ' = 4
    MsgBox Month(#12/6/2008#) ' = 12
    MsgBox Month("1 Ocak 2007") ' = 1
    MsgBox Month("Şubat 12, 2005") ' = 2
    MsgBox Month("01/02/2007") ' = 2
    MsgBox Month("1 Şub 2007") '= 2
    MsgBox Month(Now()) '= 5
    MsgBox Month(1) ' = 12
    MsgBox Month(15) ' = 1
    MsgBox Month(30) ' = 1
    MsgBox Month(32) ' = 1
    MsgBox Month(33) ' = 2
    MsgBox Month(60) ' = 2
    MsgBox Month(61) ' = 3
    MsgBox Month(256) ' = 9
    MsgBox Month(365) '= 12
    MsgBox Month(2000) ' = 6
End Sub
 
Üst Alt