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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Ignoring page filters in measure

Hello guys,

 

I got some issues by trying a calculate measure "Stock (org)" quantity to ingnore page filters.

I have three tables: Item and Calendar as dimension tables and Item Ledger Entry as fact table.

Stock (org) measure:

Stock (org) = CALCULATE(
    SUM('Item Ledger Entry'[Quantity]),
    FILTER(ALLSELECTED('Calendar'),
'Calendar'[Date]<=MAX('Calendar'[Date])
 ))

Everything worked fine, till I had a task to create a table where show just purchase operation (Item name/Quantity/ and stock for end date), purchase operations (Item Ledger Entries [Source Type] = 2). I modified formula:

Stock (1) = CALCULATE(
    SUM('Item Ledger Entry'[Quantity]), ALLEXCEPT('Item Ledger Entry', 'Item Ledger Entry'[Item No_]),
    FILTER(ALLSELECTED('Calendar'),
'Calendar'[Date]<=MAX('Calendar'[Date])
 ))

But result is that it shows total stock amount for every Item.

Purchase stock_1.png

Do you have any solutions how to modify formula, that fits my needs.

 

Example:

https://drive.google.com/file/d/18sR4YR79fLkCikuNw6lF_fFkM-VsR-4L/view?usp=sharing

 

 

1 ACCEPTED SOLUTION
v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @Anonymous,

 

It seems you just need to remove the filter 'Item Ledger Entry'[Source Type]. Is it this one?

Stock (1) =
CALCULATE (
    SUM ( 'Item Ledger Entry'[Quantity] ),
    ALL ( 'Item Ledger Entry'[Source Type] ),
    FILTER (
        ALLSELECTED ( 'Calendar' ),
        'Calendar'[Date] <= MAX ( 'Calendar'[Date] )
    )
)

Ignoring-page-filters-in-measure

 

 

Best Regards,
Dale

Community Support Team _ Dale
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

4 REPLIES 4
v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @Anonymous,

 

It seems you just need to remove the filter 'Item Ledger Entry'[Source Type]. Is it this one?

Stock (1) =
CALCULATE (
    SUM ( 'Item Ledger Entry'[Quantity] ),
    ALL ( 'Item Ledger Entry'[Source Type] ),
    FILTER (
        ALLSELECTED ( 'Calendar' ),
        'Calendar'[Date] <= MAX ( 'Calendar'[Date] )
    )
)

Ignoring-page-filters-in-measure

 

 

Best Regards,
Dale

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

Thanks, @v-jiascu-msft it's working!

 

 

TomMartens
Super User
Super User

Hey,

 

I have to admit that I do not fully understand your requirements, maybe you might consider to explain in more detail what you have to achieve.

 

But nevertheless, maybe this measure provides what you are looking for:

Stock (1) = CALCULATE(
sum('Item Ledger Entry'[Quantity])
--,ALLEXCEPT('Item Ledger Entry', 'Item Ledger Entry'[Item No_]),
,ALL('Item Ledger Entry')
,'Item Ledger Entry'[Source Type] = 2
,KEEPFILTERS(VALUES('Item'[Merged]))
,FILTER(
ALLSELECTED('Calendar')
,'Calendar'[Date]<=MAX('Calendar'[Date])
)
)


Regards,

Tom



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany
Anonymous
Not applicable

Nope, it's sums just rows where Source Type is 2.

Let me be a little bit more clear.

I prepared a table wich has all Purchase info (Page filter set up Source Type = 2) and in this table I need one more column (the red one) wich has to ignore Page filter Source Type =2 (show sum of all transactions for specific date).

 

Purchase 1.png

Can you help me?

 

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors