Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

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...
  • StefanoGrimaldi's avatar
    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.