Beast Mode

Beast Mode

Combine date columns

Is the below logic possible?

If appeal determination date is blank, insert determination date, if not insert application determination date?

Tagged:

Answers

  • If by blank you mean null, then you can use the IFNULL() function to do the replacement ilke this:

    1. IFNULL(`appeal determination date`,`determination date`)

    If it isn't actually null but an empty space you can do this:

    1. CASE WHEN TRIM(`appeal determination date`) = '' THEN determination date
    2. ELSE appeal determination date
    3. END
    **Check out my Domo Tips & Tricks Videos

    **Make sure to <3 any users posts that helped you.
    **Please mark as accepted the ones who solved your issue.

Welcome!

It looks like you're new here. Members get access to exclusive content, events, rewards, and more. Sign in or register to get started.
Sign In