Forum Discussion
Anonymous
4 years agoNot applicable
Create a calculation median column
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 .
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 )
3 Replies
- SpartaBI
Community Champion
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 )- AnonymousNot applicable
Thank you for your help : )
- SpartaBI
Community Champion
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 🙂