Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi i have three columns
Year - YYYY
month - MMM
Date - DD
i want to select last 10 days (exclude reload date) if reload date is 21 i want to date 10 - 20 data.
i want to put this is dimension in pivot table.
Create a calculated dimension as follows
if ( Date >=floor(ReloadTime()-11) and Date < floor(ReloadTime()), Date)
here i don't have date colum,
i have three columns as year,month and day. need to combine them
Ok. then try this.
if ( Date(Date#( Year&month&Day,'YYYYMMMDD'),'DD/MM/YYYY')
>= floor(ReloadTime()-11) and Date < floor(ReloadTime()), Date)
and Date(Date#( Year&month&Day,'YYYYMMMDD'),'DD/MM/YYYY')
< Date < floor(ReloadTime()), Date(Date#( Year&month&Day,'YYYYMMMDD'),'DD/MM/YYYY'))
not working
can you show me your script pls.
it's working, tx
if working, can you mark this thread as "Answered" to bring it to a closure?