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 Comunidad!
Hace unos días que intento crear una medida y no he podido.
Necesito crear una medida DAX que me permita analizar el mantenimiento de la cartera comercial.
Todos los meses se generan nuevas ventas (expresadas en la Tabla_Ventas - CobCuo1) y también se generan cuotas desde la 2 en adelante (Tabla_Cuotas). La "diferencia" expresa la caída mensual de la cartera vigente (vendida los meses anteriores).
Van imágenes ilustrativas de apoyo.
Su ayuda es muy importante para mí!
Muchas gracias.
Guillermo.-
Muchas gracias Nono Chen por tu pronta respuesta.
Lamentablemente no he podido resolverlo. Seguramente no he sido claro en mi consulta.
Pero no estamos lejos de resolverlo!
Envío cómo quedó la tabla y el archivo con el ejemplo.
Gracias!!!
PD: Puedo enviar el archivo .pbix como ejemplo.
Hi @GuilleLus
You can share your pbix file, taking care to remove sensitive information.
Regards,
Nono Chen
Hi @GuilleLus
For your question, here is the method I provided:
Here's some dummy data
"Table_Cuotas"
"Table_Ventas"
The first thing to do is to create a relationship between the two tables.
Add a index column to table_Ventas.
Based on the table data use "Cuotas" and "index" to establish table relationships.
Add a new calculated column to "Table_Cuotas", in descending order of "Cuotas".
_Cuotas = RANKX(ALL('Table_Cuotas'), 'Table_Cuotas'[Cuotas],,DESC)
Create measures.
_Cobradas =
var _index = SELECTEDVALUE('Table_Ventas'[Index])
return
CALCULATE(
SELECTEDVALUE('Table_Cuotas'[Cobradas]),
FILTER(
ALL('Table_Cuotas'),
'Table_Cuotas'[_Cuotas] = _index
)
)
Diferencia =
var _Cob = CALCULATE(
SELECTEDVALUE('Table_Ventas'[Cob.Cta.1]),
FILTER(
ALL('Table_Ventas'),
'Table_Ventas'[Index] = MAX('Table_Ventas'[Index]) + 1
)
)
RETURN [_Cobradas] - _Cob
Here is the result.
Regards,
Nono Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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.
User | Count |
---|---|
25 | |
18 | |
15 | |
9 | |
7 |
User | Count |
---|---|
37 | |
32 | |
16 | |
16 | |
12 |