Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
dkushner
Frequent 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

BudgetPeriodBudgetMonthlyRublesDaysInMonth
01.01.2018397872831
01.02.2018401218828
01.03.2018431982831
01.04.2018451832430
01.05.2018459281231
01.06.2018475251730
01.07.2018561568331
01.08.2018411093731
01.09.2018532610530
01.10.2018545125031
01.11.2018505497430
01.12.2018515188731

 

I need to create a measure that will return the value from the column "BudgetMonthlyRubles" based on the current month and year, so for the january 2018 I should get as a result 3978728

1 ACCEPTED SOLUTION
Drors
Resolver III
Resolver III

Create new measure:

BudgetThisMonth = calculate(sum(BudgetMonthlyRubles),year(table[budgetPeriod])=year(now()),month(table[budgetPeriod])=month(now()))

View solution in original post

3 REPLIES 3
Drors
Resolver III
Resolver III

Create new measure:

BudgetThisMonth = calculate(sum(BudgetMonthlyRubles),year(table[budgetPeriod])=year(now()),month(table[budgetPeriod])=month(now()))

gooranga1
Power Participant
Power Participant

Hi @dkushner

 

You can create a column in your table that extracts the month and year from current date using now() and set the day to 1 then compare that with BudgetPeriod. You will have to format your BudgetPeriod as a type date otherwise you will have to create a string of the date which is possible.

 

Replace "column1" with BudgetPeriod in your case. You can then filter on the table where [Current Date]=1.

 

Current Date = if(DATE(year(now()),month(now()),01)=Table3[Column1],1,0)

 

CurrentMonth.PNG 

Sorry, but I don't understand how it is helping me )
I need to get 1 number to use it later in further calculations

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.