Forum Discussion
ilooper
4 years agoFrequent Visitor
Filtered Sum in calculated column
Hello all, I have what i feel should be easy problem to solve but my DAX isn't working. I have a table that I would like to add a column that returns the sum of a column filtered. Can I do that...
- 4 years ago
I figured it out through measure. The only problem is I can't (yet) roll up through the hierachy becasue of the filter context.
Total Patients (Market/Month) =Var Market1 = SELECTEDVALUE(Invoice_Table_Master[Market])Var Month1 = SELECTEDVALUE(Invoice_Table_Master[Month])ReturnCALCULATE(SUM(Invoice_Table_Master[Patient Count on Inv.]),Invoice_Table_Master[Market] = Market1,Invoice_Table_Master[Month] = Month1,ALL(Invoice_Table_Master))
ilooper
4 years agoFrequent Visitor
Thanks for your help! It doesn't look like the dax for the Total Patients (Market) is working it is suming all. What do you think?