Tips Power BI: Membuat Tabel Kalender dengan M-Formula

 


M-Formula syntax:

= List.Dates(
#date(2015,01,31),  // start date
365*10,    // Dates for every day for the next 10 years
#duration(1,0,0,0)   // Specifies duration of the period 1 = days, 0 = hours, 0 = minutes, 0 = seconds
)


Comments