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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
aishak12
Helper IV
Helper IV

Creating dynamic budget report

Hi, 

 

I'm creating a budget report with Actual and Budgeted numbers. If the month has already passed (JAN - OCT) I want the table matrix to pull Actual numbers that I have created seperate measures for. If the month has yet to pass I want the table matrix to pull budgeted amount (Nov - Dec). Is there any IF statement I can write for this to be possible. 

 

Column's used: 

 

aishak12_0-1605021103799.pngaishak12_1-1605021127348.png

 

Date format:  202001 =  January, 2020 Converted to Hierarchy for (Y,Q,M,D)

 

aishak12_2-1605021164725.png

 

2 REPLIES 2
Anonymous
Not applicable

HI @aishak12,

I think provide some dummy data with raw table structure and expected results should help us clarify your scenario and test to coding formula on it.

How to Get Your Question Answered Quickly 
Regards,

Xiaoxin Sheng

PaulDBrown
Community Champion
Community Champion

@aishak12 

 

If you have a calendar table with a YearMonth column (YYYYMM formated as a number) for the dates, you can create measures:

 

Sum of Sales = SUM(Actuals1[Actuals])
Sum Target = SUM(Target2[Target])

 

and the measure to use in your visual:

 

Sales and Budget = 
VAR YMToday = VALUE(FORMAT(TODAY(), "YYYYMM"))
RETURN
IF(MAX('Calendar Table'[YearMonth])< YMToday, [Sum of Sales], [Sum Target])

 

 

result.JPG

 





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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