Forum Discussion

Kate_McCulloch's avatar
Kate_McCulloch
Regular Visitor
1 year ago
Solved

Equal to or less than calculated Column

Looking to calculate is a date is less than or equal too calculated column which I have partly working, however if the date is blank its treating that as equal too or less than. How can I build in if...
  • techies's avatar
    1 year ago

    Hi Kate_McCulloch please check this

     

    Episode Check =
    IF (
        ISBLANK(FMRTS[Episode Start Date]),
        "No",
        IF (
            FMRTS[Episode Start Date] <= FMRTS[Form Start Date],
            "Yes",
            "No"
        )
    )