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.
Hi Everyone,
I have a table named NDI as below. Created a Measure to derive another table (NDI_DISTINCT) out of it by taking distinct values.
NDI Table:
RGN_CD | LINE_OF_BUSINESS | Spoken_language_Key | Race_Key | Gender_Key | CAR_BUCKET | SCH_TELE_CT | VIDEO_CT | INPRSN_CT | URG_CARE_CT | SPECIALTY_GRP | Age_Key | START_YEAR_MONTH | END_YEAR_MONTH | Average Membership |
Thanks for the response @amitchandak . I was able to find the issue. Thank you!!
@lavnyak , Calculated column will become static and will not respond to slicers.
Either join the new table with dimension that are filtering or try a measure like
For AVG_MEM =
var NDI_DISTINCT =
DISTINCT(
SUMMARIZE (
'NDI',
NDI[Region_KEY],NDI[Line Of Business_KEY],
NDI[CAR_BUCKET],
NDI[Spoken Language_KEY],
NDI[Race_KEY],
NDI[Gender_KEY],
NDI[Age],
"Average Membership", MAX(NDI[Average Membership])
)
return
CALCULATE(
SUMX(NDI_DIstinct, [Average Membership])
,ALLEXCEPT('NDI','NDI'[Region],'NDI'[CAR_BUCKET])
)
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.