Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help on Prompts?

Status
Not open for further replies.

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


 
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.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top