Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
where is the best place to produce a calander table.
in power query or with dax in the data in model.
does anyone have any code that used to generate these tables? i currently do it manually at the moment adding a coloumn at a time using dax.
hi @NewbieJono
I prefer DAX, it is more convinient and flexible.
try like:
Date =
ADDCOLUMNS (
CALENDAR (DATE(2020,1,1), DATE(2022,12,31)),
"Year", YEAR ( [Date] ),
"Qtr", "Q" & FORMAT ( [Date], "Q" ),
"MonthNO", FORMAT ( [Date], "MM" ),
"Month", FORMAT ( [Date], "MMM" ),
"Day",FORMAT ( [Date], "DD" ),
"YYQ", FORMAT ( [Date], "YY" ) & "Q" & FORMAT ( [Date], "Q" ),
"YY/MM", FORMAT ( [Date], "YY/MM" ),
"Weekday", WEEKDAY ( [Date],2 )
)
it is like:
for max date should i use today()
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
78 | |
76 | |
53 | |
37 | |
31 |
User | Count |
---|---|
101 | |
56 | |
51 | |
45 | |
40 |