Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
8 years ago

IF AND formula for Conditional Column

I am trying to create a column that does something like the following:

 

IF cell in [TextColumn] = "value" AND cell in [DateColumn] is empty THEN "value2" ELSE do nothing

 

What would a dax forumla that accomplishes the above look like? 

 

Does it matter that the data in one column is text and the other is a date? 

3 Replies

  • vega's avatar
    vega
    Resolver III
    Column = 
    IF(
        Table1[TextColumn] = "value" && ISBLANK(Table1[DateColumn]),
        "value2",
        BLANK()
    )