Reply
Ludwin_Minera
New Member
Partially syndicated - Outbound

Crear filtro por rangos

Buenos días a todos,

 

Tengo una BD con una columna que tiene montos y necesito crear y agrupar con un filtro esos montos por rangos:

(<=$50)

(>$50<=$1,500)

(>$1,500<=$5,000)

(>$5,000<=$25,000)

(>$25,000)

 

Muchas gracias.

1 ACCEPTED SOLUTION
Visharavana
Resolver I
Resolver I

Syndicated - Outbound

Hola @Ludwin_Minera

Primero cree una nueva columna usando el siguiente DAX

Rango de cantidad = CAMBIAR( VERDADERO(), 'TuMesa'[Cantidad] <= 50, "<= $50", 'TuMesa'[Cantidad] > 50 && 'TuMesa'[Cantidad] <= 1500, "> $50 y <= $1,500", 'TuMesa'[Cantidad] > 1500 && 'TuMesa'[Cantidad] <= 5000, "> $1,500 y <= $5,000", 'TuMesa'[Cantidad] > 5000 && 'TuMesa'[Cantidad] <= 25000, "> $5,000 y <= $25,000", 'TuMesa'[Cantidad] > 25000, "> $25,000" )

Utilicé el traductor si tengo algún error en la traducción, lo siento.

View solution in original post

2 REPLIES 2
Visharavana
Resolver I
Resolver I

Syndicated - Outbound

Hola @Ludwin_Minera

Primero cree una nueva columna usando el siguiente DAX

Rango de cantidad = CAMBIAR( VERDADERO(), 'TuMesa'[Cantidad] <= 50, "<= $50", 'TuMesa'[Cantidad] > 50 && 'TuMesa'[Cantidad] <= 1500, "> $50 y <= $1,500", 'TuMesa'[Cantidad] > 1500 && 'TuMesa'[Cantidad] <= 5000, "> $1,500 y <= $5,000", 'TuMesa'[Cantidad] > 5000 && 'TuMesa'[Cantidad] <= 25000, "> $5,000 y <= $25,000", 'TuMesa'[Cantidad] > 25000, "> $25,000" )

Utilicé el traductor si tengo algún error en la traducción, lo siento.

Syndicated - Outbound

Muchas gracias, funcionó perfectamente....

avatar user

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

Check out the February 2025 Power BI update to learn about new features.

Feb2025 NL Carousel

Fabric Community Update - February 2025

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

Top Solution Authors (Last Month)
Top Kudoed Authors (Last Month)