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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Vizbaby
Frequent Visitor

IF statement to categorize date column

I have a column with dates and some of the column have no value. i want to create a table that shows 'Yes' if is not null and 'No' if the column is null. i used this formula IF(ISBLANK('Tablename'[date_column]), "No", "Yes") and also tried if('Tablename'[date_column]=blank(),"No","Yes"). But powerbi claims it cant find the column, i have tried a simple count formula with same column and it worked. Please what am i doing wrong?

1 ACCEPTED SOLUTION
PijushRoy
Super User
Super User

Hi @Vizbaby 

Please try in DAX
If('Tablename'[date_column]="null","No","Yes")

OR Try below code in Custom Column in Power Query
= if [date_column] = null then "No" else "Yes"
or 
= if [date_column] = "null" then "No" else "Yes"

Please share screenshot of the error and table column name
Is it Datatype as Date or DateTime or other

If solved your requirement, please mark this answer as SOLUTION.
If this comment helps you, appreciate your KUDOS 👍


Thanks
Pijush

Follow www.MyAccountingTricks.com 
Youtube - https://www.youtube.com/channel/UCWWGZXYYq_TmV6UPiC3ujkQ




Did I answer your question? Mark my post as a solution!
Appreciate your Like/Kudos

Proud to be a Super User!





View solution in original post

2 REPLIES 2
PijushRoy
Super User
Super User

Hi @Vizbaby 

Please try in DAX
If('Tablename'[date_column]="null","No","Yes")

OR Try below code in Custom Column in Power Query
= if [date_column] = null then "No" else "Yes"
or 
= if [date_column] = "null" then "No" else "Yes"

Please share screenshot of the error and table column name
Is it Datatype as Date or DateTime or other

If solved your requirement, please mark this answer as SOLUTION.
If this comment helps you, appreciate your KUDOS 👍


Thanks
Pijush

Follow www.MyAccountingTricks.com 
Youtube - https://www.youtube.com/channel/UCWWGZXYYq_TmV6UPiC3ujkQ




Did I answer your question? Mark my post as a solution!
Appreciate your Like/Kudos

Proud to be a Super User!





OR Try below code in Custom Column in Power Query
= if [date_column] = null then "No" else "Yes"

This worked perfectly. Thank You

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.

Top Solution Authors