Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I want to report through the month which contains the current date... so today is 12/3/15, so I would only want to see data through 12/2015 in my charts. How would I accomplish this? something using If(MonthEnd(today())...?
Dimension: =date(FISCAL_YEAR_MONTH, 'MMM-YY')
Expressions:
$(vRoundBaseAmt) ,
$(vRoundChargedCap) ,
$(vRoundToAU) ,
$(vRoundFromAU) ,
$(vNetAU) ,
$(vRoundAUBudget) ,
Thanks,
Cassandra
I think I got it... =if(monthend(today())>=FISCAL_MONTH_YEAR,date(FISCAL_YEAR_MONTH, 'MMM-YY'))
May be try it like this:
If(DateField <= Today(), $(vRoundBaseAmt)) and so on....
In the Expressions? What I am looking for is essentially this but only for previous and the current month:
If I use If(TRX_DATE <= monthend(Today()), $(vRoundBaseAmt)) , it shows as null for previous months.
I think I got it... =if(monthend(today())>=FISCAL_MONTH_YEAR,date(FISCAL_YEAR_MONTH, 'MMM-YY'))