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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Oimat
Helper I
Helper I

How does Analyze data create measures ?

Hello, 

I just found about the Analyze feature (Use the Analyze feature - Training | Microsoft Learn), so I clicked in my chart showing number of employees per month, and analyzed to explain why is it going up. And the Analyze feature showed me a bar chart with the number of employees per department from march compared to april.

In the Y-Axis the measurements are even called "Number of employees in march" and "Number of employees in april".

 

I do not understand how that can be possible : no new column nor measurement was added to my semantic model, and no visual calculation has been created. If I wanted to do the same (applying a filter for one Y-Axis measure while applying another filter to a seconde Y-Axis measure for example), how could I do that ?

 Capture d'écran 2025-07-22 150649.png

1 ACCEPTED SOLUTION
andrewsommer
Super User
Super User

The Analyze feature uses auto-generated DAX and temporary behind-the-scenes measures that Power BI creates dynamically and transiently.  They are not added to your semantic model and do not persist in your dataset.

 

To recreate:

[Employee Count] = COUNTROWS('Employees')

 

[Employees in March] = CALCULATE([Employee Count], 'Date'[Month] = "March")
[Employees in April] = CALCULATE([Employee Count], 'Date'[Month] = "April")

 

Or using dates you can:

[Employees in March] = CALCULATE([Employee Count], MONTH('Date'[Date]) = 3 && YEAR('Date'[Date]) = 2025)

 

Please mark this post as a solution if it helps you. Appreciate Kudos.

View solution in original post

2 REPLIES 2
andrewsommer
Super User
Super User

The Analyze feature uses auto-generated DAX and temporary behind-the-scenes measures that Power BI creates dynamically and transiently.  They are not added to your semantic model and do not persist in your dataset.

 

To recreate:

[Employee Count] = COUNTROWS('Employees')

 

[Employees in March] = CALCULATE([Employee Count], 'Date'[Month] = "March")
[Employees in April] = CALCULATE([Employee Count], 'Date'[Month] = "April")

 

Or using dates you can:

[Employees in March] = CALCULATE([Employee Count], MONTH('Date'[Date]) = 3 && YEAR('Date'[Date]) = 2025)

 

Please mark this post as a solution if it helps you. Appreciate Kudos.

That's what I thought, there is no way to replicate that without creating a new measure. Thank you !

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.