Forum Discussion
Possible to insert text in date column?
BLANK() is not the same as ""
- JBGyro2 years agoRegular Visitor
Thank you for the reply. This helped as I changed my formula to:
Column = IF(ISBLANK([Finish Date]), "Active", FORMAT([Finish Date], "MMMM YYYY"))This changes the column to Text, but now it is sorted alphabetically so there is more work to be done.
- Anonymous2 years agoNot applicable
Hi,
to make it sort order change use index table and relate with your custom column.
Ex of index table
Index MonthYear
1 Active
2 Jan 2023
3 Feb 2023
4 Mar 2023
etc.
This dim table MonthYear column sort order should change by Index. I hope you know this concept.
Happy learning. - mahenkj22 years agoSolution Sage
Hi JBGyro ,
Incase you use a date table and use month filter from that, this blank will not appear in the slicer. and together with follow the my earlier input, your user should be fine. Date is a dimension and should preferably come from dimension table and not the fact table. A proper date table will add lot of flexibility in your report.
Hope it helps.