Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
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.
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
)
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 : )
@GRCz 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 🙂
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!