The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I have created a table with dates i want to add a column which orders these dates numerically, 1,2,3 and so on.
Any help greatly appreciated
Thanks
Solved! Go to Solution.
@Jay2022 - Here's an easy way to do this as a calculated table:
Dates =
VAR _dates = CALENDARAUTO( )
RETURN
ADDCOLUMNS( _dates, "Day", DAY( [Date] ))
If this works for you, please accept is as the solution to help with visibility for others with the same issue.
Hi @Jay2022 , hello mark_endicott and lbendlin, thank you for your prompt reply!
Is there any progress on this issue?
If you find anyone's answer is helpful to you, please remember to accept it.
It will help others who meet the similar question in this forum.
If you have any further related issues, please feel free to reply!
@Jay2022 - Here's an easy way to do this as a calculated table:
Dates =
VAR _dates = CALENDARAUTO( )
RETURN
ADDCOLUMNS( _dates, "Day", DAY( [Date] ))
If this works for you, please accept is as the solution to help with visibility for others with the same issue.
What for? The dates are already usable for sorting?
User | Count |
---|---|
28 | |
12 | |
8 | |
7 | |
5 |
User | Count |
---|---|
36 | |
14 | |
12 | |
7 | |
7 |