Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi guys,
What I need is the following count highlighted in yellow as a new column:
Solved! Go to Solution.
Hi @I_LOVE_POWER_BI ,
If your requirement is to get the Lowest price from the different material types in the Material master then try this formula:
LowestPrice =
var Lowest = MIN('MaterialTable'[Price])
var SummarizedLowest = MINX(SUMMARIZE('MaterialTable',[MaterialMaster],[MaterialType]), Lowest)
return
SummarizedLowest
Hope this helps.
Hi @I_LOVE_POWER_BI ,
If your requirement is to get the Lowest price from the different material types in the Material master then try this formula:
LowestPrice =
var Lowest = MIN('MaterialTable'[Price])
var SummarizedLowest = MINX(SUMMARIZE('MaterialTable',[MaterialMaster],[MaterialType]), Lowest)
return
SummarizedLowest
Hope this helps.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.