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))
leonardmurphy
10 years agoSkilled Sharer
There's a DATESMTD() - is that what you're looking for?
ALeef
10 years agoResolver II
Its:
MONTH(TODAY())
- procyon8210 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.