Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
I have created some DAX to create a measure which works perfectly as a single value card
I want to use the result in another bit of DAX (Measure) but when I use it it seems to add the filters from the low level DAX to the top level DAX.
Is there anyway to Return the Single value without any of its filters. In the same way as you would copy a value in Excel and Paste as values
If I 'Hardcode' the same value for the top level DAX it works perfectly
DAX measures are always assessed according to the context in which they are used, so you should always take this functionality into account.
to resolve the issue on time, keep in mind:
Hi, @DebbieE , did you ever try to author a new measure including the old new this way?
New Measure =
VAR __old_measure = CALCULATE ( [Old Measure], ALL(CetainTables or Columns) )
...As you know, measures are extremely sensitive to evaluation context, it's really hard to pinpoint a solution without taking a close look at your data model and viz.
| Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension! |
DAX is simple, but NOT EASY! |
I have already tried that. I thought there may be some DAX that literally converts to values, like you get in Excel
I already have an open question containing the actual DAX. I just added this one to see if there was a simple answer but I dont think there is unfortunaltey
Hi @DebbieE , every time when a measure is used, no matter singly used or used in other DAX codes, it will be evaluated according to its current context. The result of a measure will not be stored in the model, so there is not a static measure value to be used somewhere else.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.