Forum Discussion

Learner_SG's avatar
Learner_SG
Helper IV
4 years ago
Solved

subtract time difference dax

Hi , I would like to  create a column to show the  values as 1 if the time difference between the current time and the recorded times in the table is between 0 to 30 mins. ,meaning to say I want to s...
  • Anonymous's avatar
    Anonymous
    4 years ago

    Hi,you can use this dax :

    Is IN 30Minutes = IF((now()-Sheet1[date])*24<=0.5,1,0)
  • Learner_SG's avatar
    Learner_SG
    4 years ago

    Anonymous , thanks a lot. modified my table to datetime and it worked.thanks.