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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
JustinDoh1
Post Prodigy
Post Prodigy

Simple question on DAX

I have following DAX that I have been using but I was wondering about this for a long time.

 

DAX =
IF( HASONEVALUE( tblTest[Name]),

         var CurrentTestValue = SELECTEDVALUE( tblTest[Field])

    return
          CALCULATE(
                    SELECTEDVALUE( tblMain[Rating]),
                    TOPN(1,
                             FILTER(
                                    ALL( tblMain ),
                                    CurrentTestValue <= tblMain[CutOff]
                             ),
                            tblMain[MaxTotal],
                            ASC
                        ),
                       All(tblMain)
              )
)

 

My question is:

1) What is point of All(tblMain)? I know that it would not make a difference if that part is there or not.

1 ACCEPTED SOLUTION
pallavi_r
Super User
Super User

Hi @JustinDoh1 

 

Yes it is very much required to ignore all the external filters. It makes sure the comparison is on the entire set of data in the table ignoring the filters if any report, page, slicers or selection.

 

If this post helps, please accept this as a solution. Appreciate your kudos.

Thanks,
Pallavi

View solution in original post

3 REPLIES 3
pallavi_r
Super User
Super User

Hi @JustinDoh1 

 

Yes it is very much required to ignore all the external filters. It makes sure the comparison is on the entire set of data in the table ignoring the filters if any report, page, slicers or selection.

 

If this post helps, please accept this as a solution. Appreciate your kudos.

Thanks,
Pallavi

@pallavi_r  So, it is not required, correct?

Hi @JustinDoh1 , It is required.

Thanks,

  • Pallavi

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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