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
gauravnarchal
Post Prodigy
Post Prodigy

DAX ALL Formula

How can I add "ALL formula" in the below measure so that it ignores all filters in the visual?

 

First Sales Date in Selected =
MAXX(
TOPN( 1,
SUMMARIZE(ARInvoices,ARInvoices[InvoiceDate],ARInvoices[ProfileNumber]),
CALCULATE( MIN(ARInvoices[InvoiceDate])), ASC ),
ARInvoices[InvoiceDate])
1 ACCEPTED SOLUTION
v-juanli-msft
Community Support
Community Support

Hi @gauravnarchal 

Create measures

Measure =
MINX (
    TOPN (
        1,
        FILTER (
            ALL ( 'Table 2' ),
            'Table 2'[customer no] = MAX ( 'Table 2'[customer no] )
        ),
        CALCULATE ( MIN ( [invoice date] ) ), ASC
    ),
    [invoice date]
)

Capture8.JPG

Best Regards
Maggie
Community Support Team _ Maggie Li
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

6 REPLIES 6
v-juanli-msft
Community Support
Community Support

Hi @gauravnarchal 

Create measures

Measure =
MINX (
    TOPN (
        1,
        FILTER (
            ALL ( 'Table 2' ),
            'Table 2'[customer no] = MAX ( 'Table 2'[customer no] )
        ),
        CALCULATE ( MIN ( [invoice date] ) ), ASC
    ),
    [invoice date]
)

Capture8.JPG

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

Greg_Deckler
Super User
Super User

@gauravnarchal - Perhaps:

 

 

First Sales Date in Selected =
MAXX(
TOPN( 1,
SUMMARIZE(ALL(ARInvoices),ARInvoices[InvoiceDate],ARInvoices[ProfileNumber]),
CALCULATE( MIN(ARInvoices[InvoiceDate])), ASC ),
ARInvoices[InvoiceDate])

 


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

@Greg_Deckler  - Thank you for your response.

 

I tried using this measure and now it had ignored the first invoice date of the customer.

 

I am creating a measure to get the first invoice date of the customer. The measure should also ignore the filter/visual.

 

Below is the table.

 

7-20-2020 2-59-03 PM.jpg

@gauravnarchal - You might need to use ALLEXCEPT then.


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

@Greg_Deckler  Can you please advise how can I add ALLEXCEPT formula in the below measure?

 

First Sales Date in Selected =
MAXX(
TOPN( 1,
SUMMARIZE(ARInvoices,ARInvoices[InvoiceDate],ARInvoices[ProfileNumber]),
CALCULATE( MIN(ARInvoices[InvoiceDate])), ASC ),
ARInvoices[InvoiceDate])

 

Thanks 

@gauravnarchal - Same place I suggested the ALL. Really hard to say specifically without testing it. 

Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490

The most important parts are:
1. Sample data as text, use the table tool in the editing bar
2. Expected output from sample data
3. Explanation in words of how to get from 1. to 2.

 

Also, you can check if your issue is a common issue listed here: https://community.powerbi.com/t5/Community-Blog/Before-You-Post-Read-This/ba-p/1116882


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

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.