I am trying to write a popup parameter query but it wont save past a certain letter count... how can work around this?
here's what i want my query to be:
select 'thismonth', 'This Month'
union
select 'lastmonth', 'Last Month'
union
select 'custom', 'Custom - Enter start and end dates'
union
select 'thisyear', 'This Year'
union
select 'quarter1', 'First Quarter'
union
select 'quarter2', 'Second Quarter'
union
select 'quarter3', 'Third Quarter'
union
select 'quarter4', 'Fourth Quarter'
when i save the query this is what saves:
select 'thismonth', 'This Month'
union
select 'lastmonth', 'Last Month'
union
select 'custom', 'Custom - Enter start and end dates'
union
select 'thisyear', 'This Year'
union
select 'quarter1', 'First Quarter'
union
select 'quarter2', 'Sec