Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Necesito sumar los el presupuesto total del periodo, pero que solo respete el segmentador periodo e ignore los demas segmentadores como el mes.
Campos de tabla calendario
Solved! Go to Solution.
Hi, @MONTENEGRO
If there is no relationship created between your calendar table and Resultados Operaciones table, you can try to calculate total budget with measures like the following.
Presupuesto anual =
CALCULATE (
SUM ( 'Resultados Operaciones'[Presupuesto] ),
FILTER (
'Resultados Operaciones',
'Resultados Operaciones'[Fecha] IN VALUES ( Calendario[Fecha] )
)
)
Presupuesto anual2 = SUMX(ALLEXCEPT(Calendario,Calendario[Periodo]),[Presupuesto anual])
Hope this could help.
Best Regards,
Community Support Team _ Eason
Hi, @MONTENEGRO
If there is no relationship created between your calendar table and Resultados Operaciones table, you can try to calculate total budget with measures like the following.
Presupuesto anual =
CALCULATE (
SUM ( 'Resultados Operaciones'[Presupuesto] ),
FILTER (
'Resultados Operaciones',
'Resultados Operaciones'[Fecha] IN VALUES ( Calendario[Fecha] )
)
)
Presupuesto anual2 = SUMX(ALLEXCEPT(Calendario,Calendario[Periodo]),[Presupuesto anual])
Hope this could help.
Best Regards,
Community Support Team _ Eason
User | Count |
---|---|
15 | |
11 | |
6 | |
6 | |
5 |
User | Count |
---|---|
29 | |
17 | |
11 | |
7 | |
5 |