Hello All,
First time in the forum
I had a quick question, I have a rolling dataset in a table that I'm working off of. For needs of a report, I have to pull just the last 18 months worth of data. My field that I want to work off of is a Rpt_Month field and it lists out the month as:
07-01-2016
So my simple query that I am trying to run is
Select *
from table_a
where rpt_month = (last 18 months)
This will get fed into an SSAS cube to build my report off of. Any help would be greatly appreciated!!!