Feb 3, 2010 #1 taree Technical User May 31, 2008 316 US I would like only to match the year: {BIDLET.DATELET} = CDate({?Letting Year}) in this case the letting year is 2008,2009,2010 so, I would like to pass the year 2008 as a parmater {BIDLET.DATELET} = 2008 thank you
I would like only to match the year: {BIDLET.DATELET} = CDate({?Letting Year}) in this case the letting year is 2008,2009,2010 so, I would like to pass the year 2008 as a parmater {BIDLET.DATELET} = 2008 thank you
Feb 3, 2010 #2 lbass Technical User Feb 9, 2002 32,816 US Set up the parameter as a number parameter. If your field is not a number for year, but a date, then you can use: year({BIDLET.DATELET}) = {?Letting Year} Or better yet, convert the field to a year field in a SQL expression {%year}: {fn year(BIDLET.DATELET)} ...and use a record selection formula of {%year} = {?Letting Year} -LB Upvote 0 Downvote
Set up the parameter as a number parameter. If your field is not a number for year, but a date, then you can use: year({BIDLET.DATELET}) = {?Letting Year} Or better yet, convert the field to a year field in a SQL expression {%year}: {fn year(BIDLET.DATELET)} ...and use a record selection formula of {%year} = {?Letting Year} -LB