This site uses different types of cookies, including analytics and functional cookies (its own and from other sites). To change your cookie settings or find out more, click here. If you continue browsing our website, you accept these cookies.
We have extended our Early Bird Tickets for Inspire 2023! Discounted pricing goes until February 24th. Save your spot!
I am trying to filter my data to R12 data based on the columns shown below. With the year and month being separate I am unsure how to filter them to last 12 months. My best idea so far is filtering it using the formula created columns below. Let me know if you have any Ideas.
Thank You!
Solved! Go to Solution.
@nicktekippe how does this look? Within the Filter tool, the expression combines the Year & Date (as a string), before parsing it as an actual date and checking whether or not this falls within -12 months of now:
DateTimeParse(ToString([Fiscal Year])+ToString([Fiscal Month]),'%Y%m') >= DateTimeAdd(DateTimeNow(),-12,'month')
Before:
After:
@DataNath That looks great thank you. I'll give it a shot.