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

Custom View

Status
Not open for further replies.

ethoemmes

Technical User
Sep 28, 2005
2
GB
Hi

I am trying to create a view to select only email messages from a particular domain.

I.e. Select all notes received from *@aaa.com.

I have the following formula which is not working.

SELECT @Select(from="*@accenture.com>" )

Could someone help with the correct syntax?

TIA
 
The star character as placeholder is not available in formula language.
Your formula is in effect trying to select every doc where the From field is equal to "*@accenture.com>" - of which, of course, there are none.

What you need to do is to break down the data yourself. Something like this should work :
Code:
wkDomain:=@uppercase(@right(from;"@"));
SELECT wkDomain="ACCENTURE.COM>"

Pascal.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top