Forum Discussion
Anonymous
6 years agoNot applicable
SUMIF without Filter
Hi good people, Need a help. I have a measure Shift A = CALCULATE( SUM('Database'[Actual Production (Carton)]), FILTER(Database,Database[Shift]="A") ) I want to SUM [Actua...
amitchandak
6 years agoSuper User
Try
Shift A =
CALCULATE(
SUMX('Database', If(Database,Database[Shift]="A",[Actual Production (Carton)],0))
)
Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks. My Recent Blog -
Winner-Topper-on-Map-How-to-Color-States-on-a-Map-with-Winners , HR-Analytics-Active-Employee-Hire-and-Termination-trend
Power-BI-Working-with-Non-Standard-Time-Periods And Comparing-Data-Across-Date-Ranges
Connect on Linkedin
Anonymous
6 years agoNot applicable
Try this,
Sumx(table,if(table[col]="A",table[quantity],0))
Cheers,
Pravin
If it resolves your problem Mark it as solution and give Kudos.
Sumx(table,if(table[col]="A",table[quantity],0))
Cheers,
Pravin
If it resolves your problem Mark it as solution and give Kudos.