Forum Discussion
RafaelAri
3 years agoHelper III
Filter dates
Hello, I have a table of warehouse content, with "Last Transaction Date" column. I want to add column that gives "1" for dates from more than 24 months ago and "0" for dates in the last 24 months. ...
- 3 years ago
Hi,
add a calculated column with:
Column = IF(DATEDIFF('Table'[Last Trans.],TODAY(),MONTH)>24,1,0)If I answered your question, please mark my post as solution, Appreciate your Kudos 👍
DOLEARY85
3 years agoResident Rockstar
Hi,
add a calculated column with:
Column = IF(DATEDIFF('Table'[Last Trans.],TODAY(),MONTH)>24,1,0)
If I answered your question, please mark my post as solution, Appreciate your Kudos 👍