Forum Discussion

GWTF's avatar
GWTF
Helper I
4 years ago
Solved

Recalculate specific column value based on another column value

Hi all,   My question is quite easy and the answer probably isn't that hard as well, but I just can't seem to get my head around it in DAX 😀.   I've got 2 columns: 1. STATUSOBJECT: this column ...
  • jppv20's avatar
    4 years ago

    Hi GWTF ,

     

    Create a new column like this:

    Statusobject 2 =
    IF('Table'[Hoogteconstructie]=BLANK(),"Niet gemeten",
    'Table'[Statusobject])
     
    If I answered your question, please mark it as a solution to help other members find it more quickly.