cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
GRCz
New Member

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.

 

GRCz_0-1653155558106.png

 

Thank you .

 

1 ACCEPTED SOLUTION
SpartaBI
Community Champion
Community Champion

@GRCz 

 

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
)

 


2022-05-19 17_30_22-Re_ Need help on DAX function with measure vs colu... - Microsoft Power BI Commu.png

Showcase Report – Contoso By SpartaBI


SpartaBI_3-1652115470761.png   SpartaBI_1-1652115142093.png   SpartaBI_2-1652115154505.png

Full-Logo11.png

View solution in original post

3 REPLIES 3
SpartaBI
Community Champion
Community Champion

@GRCz 

 

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
)

 


2022-05-19 17_30_22-Re_ Need help on DAX function with measure vs colu... - Microsoft Power BI Commu.png

Showcase Report – Contoso By SpartaBI


SpartaBI_3-1652115470761.png   SpartaBI_1-1652115142093.png   SpartaBI_2-1652115154505.png

Full-Logo11.png

Thank you for your help : )

SpartaBI
Community Champion
Community Champion

@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 🙂

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors