Forum Discussion
Learner_SG
4 years agoHelper IV
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...
- Anonymous4 years ago
Hi,you can use this dax :
Is IN 30Minutes = IF((now()-Sheet1[date])*24<=0.5,1,0) - 4 years ago
Anonymous , thanks a lot. modified my table to datetime and it worked.thanks.
Anonymous
4 years agoNot applicable
Hi,you can use this dax :
Is IN 30Minutes = IF((now()-Sheet1[date])*24<=0.5,1,0)
Learner_SG
4 years agoHelper IV
Anonymous , thanks a lot. modified my table to datetime and it worked.thanks.