Forum Discussion
drgenius
4 years agoFrequent Visitor
Calculate a value with the difference from a timestamp column and current timestamp in DAX
Hi, New to power bi and I want some help with DAX. I have a column with values and I want if the timesamp of the row is bigger than 30 days (current timestamp) then the value has to be null. ...
- Anonymous4 years ago
Hi,
Can you try to adjust this formula and see if it works for you:Datediff = if(DATEDIFF('Date Table'[Date],TODAY(),DAY)>=30,0,1)
Anonymous
4 years agoNot applicable
Hi,
Can you try to adjust this formula and see if it works for you:
Datediff = if(DATEDIFF('Date Table'[Date],TODAY(),DAY)>=30,0,1)