Forum Discussion
Custom Column not showing
- 10 years ago
Hi,
I don't know why your column doesn't appair, but can you try DAX fonctions to do that.
Into your data, once the request is loaded, you can add calculated columns (like this month column) and it's more suitable to do here.
Choose the button "Add calculated column" on the table, then type that :
Month = FORMAT([Date];"mmm")
The order of months may be wrong, then you have to add another column :
sortMonth = MONTH([Date])
Sort your first column by sortMonth column and it's done.
Hi,
I don't know why your column doesn't appair, but can you try DAX fonctions to do that.
Into your data, once the request is loaded, you can add calculated columns (like this month column) and it's more suitable to do here.
Choose the button "Add calculated column" on the table, then type that :
Month = FORMAT([Date];"mmm")
The order of months may be wrong, then you have to add another column :
sortMonth = MONTH([Date])
Sort your first column by sortMonth column and it's done.