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
Hola, tengo 3 columnas: Id, categoría y cantidad, quiero agregar un cálculo de columnas que solo tengo un valor máximo en la misma categoría, ¿puedo lograr eso con calcular columnas?
Añadir captura de pantalla lo que quiero:
desea Salida | |||
IDENTIFICACIÓN | Categoría | Cantidad | Cantidad máxima |
1 | A | 1 | 0 |
2 | A | 1 | 0 |
3 | A | 3 | 3 |
4 | A | 2 | 0 |
5 | A | 1 | 0 |
6 | B | 1 | 0 |
7 | B | 1 | 0 |
8 | B | 2 | 2 |
9 | B | 2 | 0 |
10 | B | 1 | 0 |
11 | C | 1 | 0 |
12 | C | 2 | 0 |
13 | C | 2 | 0 |
14 | C | 2 | 0 |
15 | C | 4 | 4 |
MAX =
VAR _current_qty = 'Table'[Quantity]
VAR _current_cateogry = 'Table'[Category]
VAR _max_per_category =
CALCULATE(MAX('Table'[Quantity]), REMOVEFILTERS('Table'), 'Table'[Category] = _current_cateogry)
VAR _result =
IF(_current_qty = _max_per_category, _current_qty, 0)
RETURN
_result
Hola gracias por tu rápida respuesta no funciona, como puedes ver en la categoría b tengo 2 valores máximos y solo quiero un valor.
Quiero sólo un valor máximo por categoría, por lo que si empata sólo uno y el otro será 0
MAX =
VAR _current_qty = 'Table'[Quantity]
VAR _current_cateogry = 'Table'[Category]
VAR _max_per_category =
CALCULATE(MAX('Table'[Quantity]), REMOVEFILTERS('Table'), 'Table'[Category] = _current_cateogry)
VAR _id_with_max =
MINX(
FILTER(
'Table',
'Table'[Category] = _current_cateogry
&& 'Table'[Quantity] = CALCULATE(MAX('Table'[Quantity]), REMOVEFILTERS('Table'), 'Table'[Category] = _current_cateogry)
),
'Table'[ID]
)
VAR _result =
IF(_current_qty = _max_per_category && 'Table'[ID] = _id_with_max, _current_qty, 0)
RETURN
_result
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.