Forum Discussion
Anonymous
8 years agoNot applicable
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 forum...
vega
8 years agoResolver III
Column =
IF(
Table1[TextColumn] = "value" && ISBLANK(Table1[DateColumn]),
"value2",
BLANK()
)Anonymous
8 years agoNot applicable
vega Thanks for the reply! When I use your formula I get the error "Token Literal expected." When I click "show error" the second ampersand is highlighted (&&)