Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi guys,
I have this DAX:
Aantal dagen einde contract =
SWITCH (
TRUE ();
ISBLANK(TODAY()); 0; 'Vehicles'[Eind leasecontract] > TODAY(); DATEDIFF ( TODAY(); 'Vehicles'[Eind leasecontract]; DAY );
0
)
What I want is:
If 'tot einde contract' = -1 till -5000: I want this actual number. If the value is < -5000 I want "blank" because column 'Eind leasecontract' is blank, it gives me 01-01-1900.
So I want something like:
Aantal dagen einde contract =
SWITCH (
TRUE ();
ISBLANK(TODAY()); 0; 'Vehicles'[Eind leasecontract] > TODAY(); DATEDIFF ( TODAY(); 'Vehicles'[Eind leasecontract]; DAY ); [b]IF 'Vehicles'[Eind leasecontract] < - 5000; "blank"; 0[/b]
)
These are my columns.
Besides that, as you can see in the screenshot for the upper values, I got date ' maandag 1 januari 1900', which is 01-01-1900. In my database it's a blank, Power BI gives me 01-01-1900 set. I would like to see a blank. If this is possible, I think I don't have to handle the previous problem because it won't calculate Datediff Today from blank.
Solved! Go to Solution.
Hi @RemiAnthonise,
If you want to replace the "01-01-1900" with blanks, you can try the following two methods.
1. Change it in the data source. If there are some non-date values in the date column?
2. Replace it in the Query Editor.
Regarding to the DAX formula,
1. ISBLANK(TODAY()) is always false.
Can you share a sample?
Best Regards,
Dale
Hi @RemiAnthonise,
If you want to replace the "01-01-1900" with blanks, you can try the following two methods.
1. Change it in the data source. If there are some non-date values in the date column?
2. Replace it in the Query Editor.
Regarding to the DAX formula,
1. ISBLANK(TODAY()) is always false.
Can you share a sample?
Best Regards,
Dale
hi @v-jiascu-msft , I've replaced values in the query editor. I tried everything as a replacing value except 'null'. I thought this would give me 'null' as a text but it's a blank field.
Problem solved!
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 43 | |
| 42 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 190 | |
| 122 | |
| 96 | |
| 66 | |
| 47 |