Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hello Community,
I very new to Power BI. I have created the following DAX query.
Can someone let me know if it's possible to create a visual from the DAX page? Or simply from the output.
Solved! Go to Solution.
No. The DAX Query view is supposed to be a native way to inspect the query generated by a visual for optimization or for some other purposes.
You can use a backslash to create subfolder or a semicolon to assign the same measure to different folders
Hi, in somewhat related question, is it possible to create a sub-folder or category under Measures? For example I would like to create a sub-category called, MyMeasures, under Measures. Is that possible?
You can use a backslash to create subfolder or a semicolon to assign the same measure to different folders
Hi @carlton7372,
You can do that by going to Modelling tab and then select the measure which you eant to move, under properties pane, type display folder name. it'll move the measure under that folder (Folder will be created if not already exist), repeat for other measuers and they will also move to this folder
Hi @carlton7372
You either create a calcualted table from using the whole SELECTCOLUMNS in your query and add them to the a table visual or add the columns outside TOPN but inside SELECTCOLUMNS to a table visual, sort by day in descending order and add TOPN filter on day using the visual filter. No direct way to convert a DAX query to a visual. Almost everything that happens in the report view translates to one a DAX query but it is not the other way around.
Hi Danextian,
@danextian wrote:No direct way to convert a DAX query to a visual.
This is a shame.
Is there absolutely no way of converting a DAX query into a visual?
No. The DAX Query view is supposed to be a native way to inspect the query generated by a visual for optimization or for some other purposes.
@grazitti_sapna Thanks for getting in touch. I tried your suggestion, but I'm getting the following error:
Hi, thanks again for getting back to me.
When you say 'clicking new table', did you mean
Hi @carlton7372,
Click on ony table in Data pane on right side.
and select new table from table tools
Hi @carlton7372,
Instead of running an EVALUATE
in query view, define a calculated table in your model:
MyTable =
TOPN (
100,
SELECTCOLUMNS (
'Item History Operation',
"Day", 'Item History Operation'[Day],
"Operations", 'Item History Operation'[Operations],
"CU (s)", 'Item History Operation'[CU (s)],
"Duration (s)", 'Item History Operation'[Duration (s)],
"Throttling (s)", 'Item History Operation'[Throttling (s)],
"ItemHistoryUniquKey", 'Item History Operation'[ItemHistoryUniquKey]
),
[Day], ASC
)
Alternatively you can use the required columns in table view and add a filter with top 100 by day as below
🌟 I hope this solution helps you unlock your Power BI potential! If you found it helpful, click 'Mark as Solution' to guide others toward the answers they need.
💡 Love the effort? Drop the kudos! Your appreciation fuels community spirit and innovation.
🎖 As a proud SuperUser and Microsoft Partner, we’re here to empower your data journey and the Power BI Community at large.
🔗 Curious to explore more? [Discover here].
Let’s keep building smarter solutions together!
Thanks for getting in touch. I tried your suggestion, but I'm getting the following error:
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.