Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I am defining a date table using dax and instead of creating a seperate calculated column would like to add the following code with the date table code definition.
my calc col using rankx
Date Rank =
RANKX ( 'Date', FORMAT ( 'Date[Date], "YYYYMM" ),, ASC, Dense )
I want to add this to the date table code not as a calculated column but within the following code:
ADDCOLUMNS (
CALENDARAUTO (),
"Year", YEAR ( [Date] ),
"Quarter", "Q" & QUARTER ( [Date] ),
"Month", FORMAT ( [Date], "mmmm" ),
"Month Number", MONTH ( [Date] )
)
Solved! Go to Solution.
HI @akhaliq7
Please use
Date =
VAR T =
CALENDARAUTO ()
RETURN
ADDCOLUMNS (
T,
"Year", YEAR ( [Date] ),
"Quarter", "Q" & QUARTER ( [Date] ),
"Month", FORMAT ( [Date], "mmmm" ),
"Month Number", MONTH ( [Date] ),
"Date Rank", RANKX ( T, FORMAT ( [Date], "YYYYMM" ),, ASC, DENSE )
)
HI @akhaliq7
Please use
Date =
VAR T =
CALENDARAUTO ()
RETURN
ADDCOLUMNS (
T,
"Year", YEAR ( [Date] ),
"Quarter", "Q" & QUARTER ( [Date] ),
"Month", FORMAT ( [Date], "mmmm" ),
"Month Number", MONTH ( [Date] ),
"Date Rank", RANKX ( T, FORMAT ( [Date], "YYYYMM" ),, ASC, DENSE )
)
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
24 | |
9 | |
7 | |
6 | |
6 |
User | Count |
---|---|
29 | |
11 | |
11 | |
10 | |
6 |