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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Filtering a Multiline Text field in crystal reports 1

Status
Not open for further replies.

saran26

Programmer
May 20, 2008
173
US
Hi All,

We have a multiline text field with various information such as date,action,username etc.

Is it possible to filter based on the date , and display only the values which matches the date provided ??

Example -

Multiline text in the database contains,

2/11/2008 modify saran
2/21/2008 delete sam
2/11/2008 add subha

If I specify 2/11/2008 as filter to the query, it should display only two rows from the multiline text field.

2/11/2008 add subha
2/11/2008 modify saran

Please help me.

Thanks
Saran


 
Change it to:

if date(trim(mid(memoseg, instr(memoseg,"Time")+17,10))) in {ClearQuest.history_action_timestamp} to
{ClearQuest.history_action_timestamp}+30 then //etc.

In other words, compare dates on both sides of the equation.

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top