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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

Multiplication with a variable

Hello everyone,

 

I have troubles building a measure in Power BI. 

 

I calculated monthly expenditures on Power BI (I divided the whole amount per 12). 

I want to have the year-to-date expenditures, calculated automatically when you choose the month. 

 

The formula looks like that :

Year-to-date expenditures = [Monthly expenditures] * [Number of the month]

For example, in March, you multiple by 3. 

 

I tried with VAR but it doesn't work.

This is what I wrote. 

 

Ytd Expenditures =
VAR
SelectedMonth = IF(HASONEVALUE('Date 2'[Month Number]),FIRSTNONBLANK('Date 2'[Month Number],'Date 2'[Month Number]),BLANK() )-1
Return
CALCULATE([Monthly expenditures Cosmetics]*SelectedMonth,ALL('Date 2'),'Date 2'[Month Number]=SelectedMonth)

 

Thank you for your help. 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous 

Try like

Ytd Expenditures =
VAR SelectedMonth = countX('Date 2', Values('Date 2'[Month Number]))
Return
CALCULATE([Monthly expenditures Cosmetics]*SelectedMonth)



Ytd Expenditures =
VAR SelectedMonth = MaxX('Date 2'('Date 2'[Month Number]))
Return
CALCULATE([Monthly expenditures Cosmetics]*SelectedMonth)

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@Anonymous 

Try like

Ytd Expenditures =
VAR SelectedMonth = countX('Date 2', Values('Date 2'[Month Number]))
Return
CALCULATE([Monthly expenditures Cosmetics]*SelectedMonth)



Ytd Expenditures =
VAR SelectedMonth = MaxX('Date 2'('Date 2'[Month Number]))
Return
CALCULATE([Monthly expenditures Cosmetics]*SelectedMonth)
Anonymous
Not applicable

The second one is working !!

 

Thank you very much 😍

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.