Jul 28, 2003 #1 anumala28 Programmer Jun 28, 2002 87 US Hi, I need filter the data ends with < prompt value> exe: like '%3' Insted of using 3 i am using prompt value Here the problme is How should i write filter using prompt value. Thanks, Sri
Hi, I need filter the data ends with < prompt value> exe: like '%3' Insted of using 3 i am using prompt value Here the problme is How should i write filter using prompt value. Thanks, Sri
Jul 28, 2003 #2 nagrajm MIS Jul 31, 2002 123 IN There are many ways to accomplish this I am sure. One way would be Right(Data,1) = ?prompt? or Substr(Data,n,1) = ?prompt? where n is the length of the string that you want to test. Upvote 0 Downvote
There are many ways to accomplish this I am sure. One way would be Right(Data,1) = ?prompt? or Substr(Data,n,1) = ?prompt? where n is the length of the string that you want to test.
Jul 28, 2003 Thread starter #3 anumala28 Programmer Jun 28, 2002 87 US Thansk for your replay, Upvote 0 Downvote