Forum Discussion
Anonymous
5 years agoNot applicable
Measure Sum using Dates
Hello All I have a column called FY_QTR and it has values like 1st QTR, 2nd QTR, etc. I also have a column called StorageCharge which has dollar values. I want to create a Measure that will S...
- 5 years ago
hey,
Measure = calculate(sum(table[storagecharge], table[FY_QTR] = "2nd QTR"))
if this helped over with your question give some kudos and mark as solution for others to find it.
StefanoGrimaldi
5 years agoResident Rockstar
if I understand correctly you talking of multiiply condition for the sum sure you can do this adding filters on the measure example:
Measure = calculate(sum(table[storagecharge], table[FY_QTR] = "2nd QTR" , table[CPUCharge] = "value parameter"))
and so on you add by "," a new filter condition.