Forum Discussion

Vizbaby's avatar
Vizbaby
Helper I
2 years ago
Solved

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'[da...
  • PijushRoy's avatar
    2 years ago

    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