Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Syndicate_Admin
Administrator
Administrator

Crear una columna mediana de cálculo

Estimados usuarios avanzados,

Necesito crear una nueva columna "calcular una mediana del valor unitPrc" por el mismo ProdCode, Vendor y ProdType

Por favor, ayude amablemente en una sintaxis DAX.

GRCz_0-1653155558106.png

Gracias.

1 ACCEPTED SOLUTION
Syndicate_Admin
Administrator
Administrator

@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

Informe de presentación – 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
Syndicate_Admin
Administrator
Administrator

@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

Informe de presentación – Contoso by SpartaBI


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

Full-Logo11.png

Gracias por su ayuda : )

@GRCz mi placer 🙂
Oye, echa un vistazo a mi informe de exhibición:
https://community.powerbi.com/t5/Data-Stories-Gallery/SpartaBI-Feat-Contoso-100K/td-p/2449543
Dale un pulgar hacia arriba si te gustó 🙂

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.