Forum Discussion

JedShields's avatar
JedShields
Regular Visitor
2 years ago
Solved

Looking for help with IF AND statement mixing dates and text

Hello all,   I'm fairly new to DAX and need some help with the following code: MS7 FC Exception =         IF(ISBLANK([Column A DATE])         && [Column B DATE] >= 1         && [Column C ...
  • manvishah17's avatar
    2 years ago

    Hi JedShields ,
    MS7 FC Exception =
    IF(
    ISBLANK([Column A DATE]) &&
    NOT(ISBLANK([Column B DATE])) &&
    NOT(ISBLANK([Column C DATE])) &&
    [Column D TEXT] = "No",
    "Issue",
    "No Issue"
    )