Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi guys,
i want to look for a previous month count. here my set analysis.
Count({$< Channel= {'TV1'}, Month(addmonths(max(master_date) ,- 1))}>}ID)
I think my set analysis is wrong.. i couldnt get any result. please help@!
Rgds
Jim
vMonth= (Month(Addsmonth(Today(),-1))
<Channel= {'TV1'}, Month_Field={'$(vMonth)'}>
i have added this
count(<Channel= {'TV1'}, month={'$(vMonth)'}>ID)
but stil not working.
send me sample data
Count({< Channel= {'TV1'},Month_Field= {$(=max(Month_Field)-1)}>}ID)
Add equation before expression:
vMonth= '=Month(AddMonths(Max(master_date),-1)'
You have to have a month period field .. Could you pl share a sample?
ex: if you have a filed that is in NOV 2018 format,
=count({<Channel= {'TV1'},MonthYear={"$(=Date(AddMonths(Today(),-1),'MMM YYYY'))"}>} ID)
Hi!
Try this:
Count({$<Channel= {'TV1'},Master_date={">=$(=Addmonths(min(Master_date),-1))<=$(=Addmonths(max(Master_date),-1))"}>}ID)
Skvortsov S.