Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Community,
I have a table like this, i need to be find out the YTD and MTD Calls
Day of the Calls,
Year to date Calls,
Month To date Calls
could some help me
LOAD
MTD,
YTD,
Metricid
FROM
(ooxml, embedded labels, table is Sheet1);
Thanks,
Rohith
Try this....
Take Date field(DD/MM/YYYY) in script level..then try expression
YTD:
Sum({<Date={'>=$(=(Num(YearStart(Max(Date)))))<=$(=(Num(Date)))'}>}Calls)
MTD:
Sum({<Date={'>=$(=(Num(MonthStart(Max(Date)))))<=$(=(Num(Date)))'}>}Calls)
See the attached file
Hi mohit ,
Thanks a lot
Plz find the attachment,let me know if i roung
Rohith