Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Has anyone gotten an expression to work where you show the last 15 days worth of activity, i.e revenue.
i was using this sum({$<Year = {$(=only(Year))}, Date= {">=$(=max(Date)-15)"}>} Revenue)
but wasno good
Attached file shows doing it with max(Date) using the exact expression I posted earlier, and with vToday by simply replacing max(Date) with vToday.
Probably tell it to ignore the Year and just go on date, and you'll probably need to format as a date. So if Date is in 'MM/DD/YY' format, something like this:
sum({<Year=,Date={">=$(=date(max(Date)-15,'MM/DD/YY'))"}>}Revenue)
John - Thnaks for the reply, it is still is not giving any result
sum
({$<Year = {$(=only(Year))},Date={">=$(=date(max(Date)-15,'MM/DD/YYYY'))"},[Revflag] = {'0'},[RevType] = {'Revenue'} > } [TotalAmount
This expression doesnt seem to work. Yet when you select RevType as a drop down and select Revenue, the data appears.
Anyone know an easy way to show last 15 days activity? Not using Date field but vToday
Attached file shows doing it with max(Date) using the exact expression I posted earlier, and with vToday by simply replacing max(Date) with vToday.
John, Thanks!