Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
I have a date column that shows completed dates for projects, this is a data group to based off the actual date column so we can get the MMMM YYYY format. The blanks in this column represent projects that are still active. I'm looking to change the null values to read "Active" for the sake of clarity when using this column as a slicer. I've tried replacing values in Power Query and various DAX formulas but keep getting an error about not being able to compare date and text values. Is there a workaround to format the date to text and insert "Active" where null?
Sample DAX I've tried:
Slicer I'm trying to update:
Hi @JBGyro ,
I would suggest to use a simpler technique in such case.
Keep this column intact as Date column, instead creat a custom column say 'Status' which check if Completion date column have date then say 'Completed' else 'Not completed'.
This keeps things simple, date column remain Date column, use Status column in report as a slicer, legend etc, now u can connect completion date column to a standard Date table as well.
I think such a technique is cohesive to easier reporting.
Hope it helps.
Thank you for the reply. I'm actually already doing this, but some confusion arises when the user wants to see active and completed projects, but then doesn't select the (Blank) option along with specific 'Completed' months.
BLANK() is not the same as ""
Thank you for the reply. This helped as I changed my formula to:
This changes the column to Text, but now it is sorted alphabetically so there is more work to be done.
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.
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.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
27 | |
12 | |
12 | |
11 | |
9 |
User | Count |
---|---|
53 | |
28 | |
17 | |
14 | |
13 |