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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
Zsolt_Kralik
Frequent Visitor

Out of touch DAX question

Hi all, I'm curious about your opinion. In my reporting I've noticed, that quite a good portion of what is required can be done with simple filtering and there is no need for DAX measures.

For example, ALLSELECTED is a quite complex formula. Here is my DAX code which works as intended.


SalesQuantity_PCT_Allselected =
DIVIDE (
    SUMX ( 'Sales by Store', 'Sales by Store'[quantity_sold] ),
    SUMX ( ALLSELECTED ( 'Sales by Store' ), 'Sales by Store'[quantity_sold] )
)


But I can get the same results by using an implicit measure percent of grand total of quantity_sold.
What is the point of the effort, do you think expanding the implicit measures funcionality and quick measures feature would reduce the need for DAX?
TY.
1 ACCEPTED SOLUTION
MFelix
Super User
Super User

Hi @Zsolt_Kralik,

 

You refer a couple of different aspects, but I believe that your main question is around the usage of implicit vs explicit measures, although the result is the same in this case, using the implicit measures is very limited because you can only use the options that Power BI gives you sum, max, min, ... and there is no option to change context or other aggregations that you may need.

 

There is also a couple of things on using the implicit measure that you won't be able to do for example the usage of calculation groups or field parameters, the resusiility is also a big plus for the explicit measures.

 

See a coulple of articles on this:

https://radacad.com/explicit-vs-implicit-dax-measures-in-power-bi

https://data-mozart.com/understanding-explicit-vs-implicit-measures-in-power-bi/

https://www.ehansalytics.com/blog/2023/9/29/always-use-explict-measures-wait-what-is-an-explicit-mea...

 

Concerning the Quick measure that you refer that is the creation of DAX measures in an automated way so when using that feature you will be using explicit measures.


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



View solution in original post

2 REPLIES 2
Zsolt_Kralik
Frequent Visitor

Hi Felix,
Thank you for the references. This post was a bit of a rant, I think there is more potential in the implicit measures given that they are quick and easy to create. I would like to see from Microsoft more options in that regard.
All your points are valid, thank you for your time.

BR,
Zsolt

MFelix
Super User
Super User

Hi @Zsolt_Kralik,

 

You refer a couple of different aspects, but I believe that your main question is around the usage of implicit vs explicit measures, although the result is the same in this case, using the implicit measures is very limited because you can only use the options that Power BI gives you sum, max, min, ... and there is no option to change context or other aggregations that you may need.

 

There is also a couple of things on using the implicit measure that you won't be able to do for example the usage of calculation groups or field parameters, the resusiility is also a big plus for the explicit measures.

 

See a coulple of articles on this:

https://radacad.com/explicit-vs-implicit-dax-measures-in-power-bi

https://data-mozart.com/understanding-explicit-vs-implicit-measures-in-power-bi/

https://www.ehansalytics.com/blog/2023/9/29/always-use-explict-measures-wait-what-is-an-explicit-mea...

 

Concerning the Quick measure that you refer that is the creation of DAX measures in an automated way so when using that feature you will be using explicit measures.


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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.

Top Solution Authors