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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
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?
Solved! Go to Solution.
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
Proud to be a 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
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
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 12 | |
| 11 | |
| 7 | |
| 7 | |
| 6 |