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
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
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.