Forum Discussion
Bruno_OMB
3 years agoRegular Visitor
Colunm total
Hello, I'm having trouble totaling. I have the following: .Valor por Fichas Contencioso = SUMX( 'table - Fichas (Entrada e Saída)', CALCULATE( COUNTROWS('table - Fichas (Entrada e Saída)'), ...
- 3 years ago
I would use a If clause:
IF(HASONEFILTER(yy/mm),"_your regular function for yy/mm","_how you calc the total")
andhiii079845
Solution Sage
3 years agoI would use a If clause:
IF(HASONEFILTER(yy/mm),"_your regular function for yy/mm","_how you calc the total")
- Bruno_OMB3 years agoRegular Visitor
Cool, I went ahead with your tip! Grateful!
Now the other question: how to add the result of each month?
Can you help me with this? I can't find a logic for this...- Bruno_OMB3 years agoRegular Visitor
I found the solution. I applied the following under the condition of accumulating the monthly result to form the total:
IF(
HASONEFILTER(dCalendar[mm/yy]),
SUMX(
"regular condition for mm/yy"
),
SUMX(VALUES(dCalendar[mm/yy]), "measure that totals mm/yy")
)