The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Dear Power Users,
I need to create a new column "calculating a median of UnitPrc value" group by the Same ProdCode, Vendor and ProdType
Please kindly help on a DAX syntax.
Thank you .
Solved! Go to Solution.
@Anonymous
MedianUnitPrice =
VAR _current_prod_code = 'Table'[ProdCode]
VAR _current_vendor = 'Table'[Vendor]
VAR _current_prod_type = 'Table'[ProdType]
RETURN
CALCULATE(
MEDIAN('Table'[UnitPrc]),
REMOVEFILTERS('Table'),
'Table'[ProdCode] = _current_prod_code,
'Table'[Vendor] = _current_vendor,
'Table'[ProdType] = _current_prod_type
)
@Anonymous
MedianUnitPrice =
VAR _current_prod_code = 'Table'[ProdCode]
VAR _current_vendor = 'Table'[Vendor]
VAR _current_prod_type = 'Table'[ProdType]
RETURN
CALCULATE(
MEDIAN('Table'[UnitPrc]),
REMOVEFILTERS('Table'),
'Table'[ProdCode] = _current_prod_code,
'Table'[Vendor] = _current_vendor,
'Table'[ProdType] = _current_prod_type
)
Thank you for your help : )
@Anonymous my pleasure 🙂
Hey, check out my showcase report:
https://community.powerbi.com/t5/Data-Stories-Gallery/SpartaBI-Feat-Contoso-100K/td-p/2449543
Give it a thumbs up if you liked it 🙂