Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Buenos dias
Quisera saber como calcular la diferencia entre los valores de cada mes, tengo el siguiente archivo, en donde quiero calcular la diferencia, cada mes corresponde a una tabla diferente, sin realizar la suma total solo realizar la diferencio por cada concepto por cada mes
Hi @Anonymous ,
I created some data:
1Month:
You can use the SELECTCOLUMNS() and Sumx() functions to load the data you want from each table into a table
Here are the steps you can follow:
1. Create calculated table.
Table =
DISTINCT(
SELECTCOLUMNS(
'1Month',
"1Month",
SUMX(FILTER(ALL('1Month'),'1Month'[Concepto]="Total"),[Amount]),
"2Month",
SUMX(FILTER(ALL('2Month'),'2Month'[Concepto]="Total"),[Amount]),
"3Month",
SUMX(FILTER(ALL('3Month'),'3Month'[Concepto]="Total"),[Amount])))
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Lo que entiendo es que debo crear una tabla o columna para cada concepto y columna?, ya que cuando lo hago no me tiene en cuenta las columnas, las tablas muestra los resultados por tempresa y concepto
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
25 | |
18 | |
16 | |
16 | |
16 |
User | Count |
---|---|
27 | |
26 | |
19 | |
15 | |
14 |