Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
jimmyg706
Helper IV
Helper IV

Value if Blank- Date

Morning All

 

Maybe its too early for my brain.

 

I have a date field which to get a date it was parsed etc. thats not the issue.

 

I have blanks in this field.  So Im going to do a DAX that will say if Blank  No date  is added

 

If true then I wanht to see the date

 

Current

 

Due Date
 
01/01/2023
 
01/01/2024

 

Expected

 

Due Date
No Date
01/01/2023
No Date
01/01/2024

 

jimmyg706_0-1701407014529.png

 

Appreciate any advice

 

Jimmy

 

 

1 ACCEPTED SOLUTION
Ahmedx
Super User
Super User

Try this


= IF(table[A] ="","NO DATE",table[A]&"")
OR
= IF(table[A] =blank,"NO DATE",table[A]&"")
or
= IF(ISBLANK(table[A] ),"NO DATE",table[A]&"")

View solution in original post

1 REPLY 1
Ahmedx
Super User
Super User

Try this


= IF(table[A] ="","NO DATE",table[A]&"")
OR
= IF(table[A] =blank,"NO DATE",table[A]&"")
or
= IF(ISBLANK(table[A] ),"NO DATE",table[A]&"")

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.