This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
I'm working on measures using ALL that reference tables and columns from tables, and I'd like to see explicitly what are the intermediate / virtual tables rather than just see the output of the final measure calculation
Is there a way to do this?
I'm trying to find one, using DAX Studio, but I can't find a way
E.g. if I was working in SQL, I'd just extract part of the query (or a subquery or CTE) and run it as a standalone query
@Anonymous ,The information you have provided is not making the problem clear to me. Can you please explain with an example.
Appreciate your Kudos.
Hi - thanks for responding.
As a simple example, how would you look at the table in the second part of this formula:
Measure_1 =
CALCULATE(
[Measure_2],
FILTER(
ALL('Sales'),
Sales[ID] = 001
)
)
Hi @Anonymous ,
According to your example, do you want to see the output of the filter section? You can just create a calculated table:
table = FILTER(ALL('Sales'),Sales[ID] = 001)
About how to use Dax studio, please refer to https://exceleratorbi.com.au/getting-started-dax-studio/
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 36 | |
| 32 | |
| 31 | |
| 21 | |
| 15 |
| User | Count |
|---|---|
| 68 | |
| 57 | |
| 31 | |
| 29 | |
| 22 |