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

One field possibly equal to many 2

Status
Not open for further replies.

gbobbie

Technical User
Aug 9, 2006
52
US
CR 9 and 2 Excel Spreadsheets

I'm trying to write a formula field that shows only those from table1.field1 if not equal to table2.field1, table2.field2 or table2.field3. I thought this would be relatively simple, but the formula isn't working correctly and is as follows:

If {table1.field1} <> [{table2.field1},{table2.field2},{table2.field3}] Then
{table1.field1} Else
""

Any help is appreciated!

THANK YOU!
 
I think you need to handle this in a case statement

select {table1.field1}

case <> {table2.field1};
{table1.field1}

case <> {table2.field2};
{table1.field1}

case <> {table2.field3};
{table1.field1}

it will handle it better otherwise I think a if then else would do the same if you are more comfortable.

Thanks so much!
satinsilhouette
 
Thank you so much. However, I'm getting an error on the <> operator.
 
Try:

not({table.field} in [{table2.field1},{table2.field2},{table2.field3}])

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top