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

Creating A Button

Hi,

How to create a button which give result where Field1 is not equal to Field2

NOField1Field2
1AX
2BZ
3CC
4DF
5EE
6FF

i.e. after pressing button, the result will show lines 1,2 and 4 only.

Thanks & Regards

1 Solution

Accepted Solutions
m_woolf
Master II
Master II

4 Replies
m_woolf
Master II
Master II

In load script do something like this:

if(Field1<>Field2,1,0) as Flag;

Then the button can select for Flag = 1

Not applicable
Author

Hi,

can you please send an example?

m_woolf
Master II
Master II

OK

Not applicable
Author

Thanks for your help.