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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
Niels_T
Post Patron
Post Patron

How to make value in measure constant

I have a measure that calculates forecasted amount.

Forecasted Amount = VAR percentage = Divide(SUM('Credit Memo + Invoice'[Amount]), calculate(SUM('Credit Memo + Invoice'[Amount]), allselected()) ) RETURN
    SUM('Forecast Totals (GS)'[Forecast])* percentage

 

In a table it looks like this:

Niels_T_0-1652345467476.png

 

As you can see on May we have the value 329.08, however, when I add a filter on May I get the total value.

 

Niels_T_1-1652345550287.png

 

How can I make sure that this doesn't change and that it display 329.08 like before the filter?

 

 

 

1 ACCEPTED SOLUTION
v-yiruan-msft
Community Support
Community Support

Hi @Niels_T ,

Please update the formula of your measure [Forecasted Amount] as below and check whether it can get the correct result...

Forecasted Amount =
VAR percentage =
    DIVIDE (
        SUM ( 'Credit Memo + Invoice'[Amount] ),
        CALCULATE (
            SUM ( 'Credit Memo + Invoice'[Amount] ),
            ALL ( 'Credit Memo + Invoice' )
        )
    )
RETURN
    SUM ( 'Forecast Totals (GS)'[Forecast] ) * percentage

If the above one can't help you get the desired result, please provide some sample data in the table 'Credit Memo + Invoice' and 'Forecast Totals (GS)(exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.

How to upload PBI in Community

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-yiruan-msft
Community Support
Community Support

Hi @Niels_T  ,

Whether your problem has been resolved? If yes, could you please mark the helpful post as Answered? It will help the others in the community find the solution easily if they face the same problem as yours. Thank you.

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-yiruan-msft
Community Support
Community Support

Hi @Niels_T ,

Please update the formula of your measure [Forecasted Amount] as below and check whether it can get the correct result...

Forecasted Amount =
VAR percentage =
    DIVIDE (
        SUM ( 'Credit Memo + Invoice'[Amount] ),
        CALCULATE (
            SUM ( 'Credit Memo + Invoice'[Amount] ),
            ALL ( 'Credit Memo + Invoice' )
        )
    )
RETURN
    SUM ( 'Forecast Totals (GS)'[Forecast] ) * percentage

If the above one can't help you get the desired result, please provide some sample data in the table 'Credit Memo + Invoice' and 'Forecast Totals (GS)(exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.

How to upload PBI in Community

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
lbendlin
Super User
Super User

- use your own Calendar table

- use ISFILTERED to inquire if the month is currently being filtered, and FILTERS  to see what the filter value is.

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

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