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
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.
- Anonymous5 years agoNot applicable
Thanks worked great and I will accept as Solution! I do have a follow on question, how would I write this if I have mulitple fields to add for 2nd Qtr-----say I have Storagecharge, CPUCharge and MemoryCharge (all frome same table) and need to include them all in the formula you gave me?