March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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.
Solved! Go to Solution.
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.
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.
Muchas gracias, funcionó perfectamente....
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
114 | |
76 | |
57 | |
52 | |
44 |
User | Count |
---|---|
164 | |
116 | |
63 | |
57 | |
50 |