The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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 |
---|---|
14 | |
12 | |
7 | |
6 | |
5 |
User | Count |
---|---|
28 | |
18 | |
13 | |
7 | |
5 |