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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Daveed
New Member

Display Budget vs Actuals (which are at a lower level)

Hi all,

 

I have a requirement to display budgets vs actuals in a somewhat unique way.

Budgets are set at the Program Level

Actuals are set at the Project Level

 

The client would prefer the matrix/table be able to display the information as:

ProgramProjectBudgetRevenue$ Remaining
MyProgram  200,000 135,000
 Project A 40,000 
 Project B 10,000 
 Project C 15,000 
MyOtherProgram 50,000 49,000
 Project D 1,000 

 

So far I am working on the Budget and Revenue (actuals) measures, with some success.

Budget: IF(HASONEVALUE('Projects'[Project Name]), BLANK(), CALCULATE(SUM('Project Budget'[Budget Amt])))

Revenue:  IF(HASONEVALUE('Program'[Program Name]), BLANK(), CALCULATE(SUM('Project Actuals'[Revenue]))

 

Any suggestions are welcome.

 

thanks

Dave

1 ACCEPTED SOLUTION
AllisonKennedy
Super User
Super User

You could try the ISINSCOPE function to help here.

Also, for your matrix formatting, set Stepped Layout to 'Off'. https://docs.microsoft.com/en-us/power-bi/visuals/desktop-matrix-visual#stepped-layout-with-matrix-v...

Is your Revenue measure working as you would like? What problems are you running into? What is the relationship between tables? Looks like you have at least 4 tables for this

Please @mention me in your reply if you want a response.

Copying DAX from this post? Click here for a hack to quickly replace it with your own table names

Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C

I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com

View solution in original post

2 REPLIES 2
AllisonKennedy
Super User
Super User

You could try the ISINSCOPE function to help here.

Also, for your matrix formatting, set Stepped Layout to 'Off'. https://docs.microsoft.com/en-us/power-bi/visuals/desktop-matrix-visual#stepped-layout-with-matrix-v...

Is your Revenue measure working as you would like? What problems are you running into? What is the relationship between tables? Looks like you have at least 4 tables for this

Please @mention me in your reply if you want a response.

Copying DAX from this post? Click here for a hack to quickly replace it with your own table names

Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C

I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com

Awesome suggestion - thanks Allison.

 

That DAX function is exactly what i was looking for.

 

Dave

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.

Top Solution Authors