Forum Discussion
dinomaster
9 years agoFrequent Visitor
IF AND dax Formula
Hey, So I'm trying to add a column to filter the current month of the year. So far I've only been able to filter out the current month. deletePresentMonth = if(value(Date[Month]) = MONTH(toda...
- 9 years ago
Simply do an AND or &&, I usually use &&
State of Month = IF(YEAR(community[Date])=year(NOW()) && MONTH(community[Date]) = MONTH(NOW()),"Current Month","Previous Month")
hope this helps
ovetteabejuela
9 years agoImpactful Individual
Simply do an AND or &&, I usually use &&
State of Month = IF(YEAR(community[Date])=year(NOW()) && MONTH(community[Date]) = MONTH(NOW()),"Current Month","Previous Month")
hope this helps
- dinomaster9 years agoFrequent Visitor