Forum Discussion
dkushner
8 years agoFrequent Visitor
select value from the table based on current month
Hi, I've been struggling with writing a DAX statement that will solve this, and would greatly appreciate any help! I have a table BudgetPeriod BudgetMonthlyRubles DaysInMonth 01.01.2018 ...
- 8 years ago
Create new measure:
BudgetThisMonth = calculate(sum(BudgetMonthlyRubles),year(table[budgetPeriod])=year(now()),month(table[budgetPeriod])=month(now()))
Drors
8 years agoResolver III
Create new measure:
BudgetThisMonth = calculate(sum(BudgetMonthlyRubles),year(table[budgetPeriod])=year(now()),month(table[budgetPeriod])=month(now()))