Forum Discussion
procyon82
10 years agoResolver I
CURRENTMONTH() ?
Curious, there is PREVIOUSMONTH() and NEXTMONTH(), how come there isn't CURRENTMONTH()?
- 10 years ago
Figured it out:
Revenue MTD = CALCULATE(SUM('GA Ecommerce'[Revenue]),PARALLELPERIOD('GA Ecommerce'[Date],0,MONTH))
ALeef
10 years agoResolver II
Its:
MONTH(TODAY())
procyon82
10 years agoResolver I
MONTH(TODAY()) would give me this month, what about every month?
- procyon8210 years agoResolver I
Figured it out:
Revenue MTD = CALCULATE(SUM('GA Ecommerce'[Revenue]),PARALLELPERIOD('GA Ecommerce'[Date],0,MONTH))
- MyNameHere10 years agoFrequent Visitor
Been driving me nuts.
This should really be a standard function though. - ALeef10 years agoResolver II
That's a much more elegant solution. I didn't realize your situation and thought you just needed a singular value for a clacluated column or something. Glad you figured it out.
- Anonymous4 years agoNot applicable
thanks.. that really helped