May 5, 2011 #1 beth4530 Technical User May 5, 2011 44 US How do I write this so it will work? Not isnull( Aged0To30Days({tblIncidents2003_2.Inc_date}))
May 5, 2011 1 #2 IanWaterman Programmer Jun 26, 2002 3,511 GB What are you trying to do? Normally you would use it like this If {orders.ORDER DATE} in Aged0To30Days Then {orders.ORDER AMOUNT} Else 0 Ian Upvote 0 Downvote
What are you trying to do? Normally you would use it like this If {orders.ORDER DATE} in Aged0To30Days Then {orders.ORDER AMOUNT} Else 0 Ian
May 5, 2011 Thread starter #3 beth4530 Technical User May 5, 2011 44 US I'm am using it in the report filter so that I do not pull in any programs that have not had an incident in the last 30 days. Upvote 0 Downvote
I'm am using it in the report filter so that I do not pull in any programs that have not had an incident in the last 30 days.
May 5, 2011 #4 IanWaterman Programmer Jun 26, 2002 3,511 GB Try not isnull({tblIncidents2003_2.Inc_date}) and {tblIncidents2003_2.Inc_date} in Aged0To30Days Ian Upvote 0 Downvote
May 5, 2011 Thread starter #5 beth4530 Technical User May 5, 2011 44 US Thank you- I'll give it a try. Upvote 0 Downvote