Forum Discussion

Penn's avatar
Penn
Icon for Resolver I rankResolver I
7 years ago
Solved

Replace null with value from another column

Hi Everyone,

 

I have a table that looks like this.

 

Date Finished         Date Closed         Date Diff

                               12/02/2019

 06/02/2019           10/02/2019                4

                               0702/2019

 

How I want to create a new column to replace the null in [Date Finished] with the value in [Date Closed], the DAX that I tried doesn't work. How should I possible fix this? Thank you!

 

 
New Column = 
IF (
    ISBLANK ( [Date Finished] ), [Date Closed], [Date Finished]
)
 
  • Hi,

     

    That calculated column formula is correct.  May thereare some invisible characters/spaces in the Date Finished column.

1 Reply

  • Hi,

     

    That calculated column formula is correct.  May thereare some invisible characters/spaces in the Date Finished column.