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
LABORSAL
Advocate II
Advocate II

Virtual table referencing in measures

Hello everyone,

 

I am trying to get a KPI for BIAS which will allow me to count the number of rows at a summarized level which fall into a range.

 

The best idea I've had is to create a summarized table as a variable and then use it inside a calculate. Here I am trying to get the number of "green bars" which would be everything between -5% and 5%:

 

 

GreenBars = 
VAR SumTable = 
  SUMMARIZECOLUMNS(
      'Table'[Year],
      'Table'[Period],
      "BIAS", CALCULATE( [BIAS Base] )
)

Return
CALCULATE( COUNTROWS(SumTable),FILTER(SumTable, SumTable[BIAS] <= .05 && SumTable[BIAS] >= -.05))

 

 

*[BIAS Base] is a SUMX measure already calculated*

 

I need to do this against a summarized table because I have way more detail in the complete table but the information I am trying to show should be at the "Year Period" level.

 

So for example if I have the filters for this information I'd need for the KPI to be 2:

image.png  

 

However, if I change my filters I'd need to get a different answer (3 in this case)

image.png

 

Is it possible to do this virtual table referencing inside measures?

1 ACCEPTED SOLUTION
Greg_Deckler
Community Champion
Community Champion

Yes, I do it all the time, but your code would be:

 

GreenBars = 
VAR SumTable = 
  SUMMARIZECOLUMNS(
      'Table'[Year],
      'Table'[Period],
      "BIAS", CALCULATE( [BIAS Base] )
)

Return
COUNTROWS(FILTER(SumTable, [BIAS] <= .05 && [BIAS] >= -.05))


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

3 REPLIES 3
TomMartens
Super User
Super User

Hey @LABORSAL ,

 

the simple answer to your question is: yes.

It's very common to create a table (a virtual table) inside a measure, and assign this table to a variable.

And use this variable further down the measure.

 

For this, I'm wondering what is your exact question.

 

By, the way it's not necessary to wrap the reference to the measure [BIAS Base] into a CALCULATE, as referencing a measure implicitly is exactly doing this.

 

If your measure does not return the exact result, please provide a pbix file that contains sample data but still reflects your data model. Upload the file to onedrive or dropbox and share the link. If you are using Excel to create the sample data, share the Excel file as well.

 

Regards,

Tom



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany
Greg_Deckler
Community Champion
Community Champion

Yes, I do it all the time, but your code would be:

 

GreenBars = 
VAR SumTable = 
  SUMMARIZECOLUMNS(
      'Table'[Year],
      'Table'[Period],
      "BIAS", CALCULATE( [BIAS Base] )
)

Return
COUNTROWS(FILTER(SumTable, [BIAS] <= .05 && [BIAS] >= -.05))


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

That does, the trick, thanks!

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.