Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How can i make a specific expression

Hi,

I have a list of email addresses which display the records. For an example

email Name Size

aa1@aa.com aa1 10

abc@aa.com abc 15

aa2@aa.com aa2 20

abc1@abc.com abc 10

Based on "email" field, How can i make a expression to say 'email' does not contain "aa*@"? So it will return the value "abc@aa.com & abc1@aa.com"

Thanks in adavance.

1 Solution

Accepted Solutions
Not applicable
Author

Hi dp,

I have not used an expression in the application but instad I have used a macro for the same. Just look whethere it helps you or not. I am pasting a smple application along with this mail.

Thanks joseph.......

View solution in original post

4 Replies
Not applicable
Author

Hi dp,

I have not used an expression in the application but instad I have used a macro for the same. Just look whethere it helps you or not. I am pasting a smple application along with this mail.

Thanks joseph.......

johnw
Champion III
Champion III

Replace the email dimension with this calculated dimension and suppress nulls:

if(not wildmatch(email,'*aa*@*'),email)

Not applicable
Author

Thanks Joseph,

I thought about to used a macro for this query.

Thanks,

Dipesh

Not applicable
Author

Thanks John,

It works for me.

Much appriciate, Dipesh