Jump to content

This topic is 1587 days old. Please don't post here. Open a new topic instead.

Recommended Posts

I am filtering a field called "OPEN" WITH RANGE 1...10 i m getting 487 records found from that record i want to filter "AMT" field with range 5000...10000 couldn't do it trying extend found set and constrain found set getting erratic results kindly help me enclosing file down plz :)

 

Edited by Dr.Gopala krishnam raju AMBATI
Link to comment
Share on other sites

To find records where Open is within the range specified in gOpenRange and AMT is not within the range specified in gAMTRange, change the script to:

Enter Find Mode [ ]
Set Field [ Test::Open; Test::gOpenRange ] 
New Record/Request
Set Field [ Test::AMT; Test::gAMTRange ] 
Omit Record
Perform Find [ ]

 

Link to comment
Share on other sites

35 minutes ago, comment said:

To find records where Open is within the range specified in gOpenRange and AMT is not within the range specified in gAMTRange, change the script to:


Enter Find Mode [ ]
Set Field [ Test::Open; Test::gOpenRange ] 
New Record/Request
Set Field [ Test::AMT; Test::gAMTRange ] 
Omit Record
Perform Find [ ]

 

:( not working 

Screenshot 2019-12-19 at 15.49.36.png

Link to comment
Share on other sites

9 minutes ago, Dr.Gopala krishnam raju AMBATI said:

not working 

Not a good description. Try something like "this finds a record with the values of ... (that should not have been found)" or "this does not find a record with the values of ... (that should have been found)".

Link to comment
Share on other sites

I am afraid you're not making your requirement clear enough. Consider the following example:

SerialID Open AMT
1 0 2500
2 0 7500
3 0 15000
4 5 2500
5 5 7500
6 5 15000
7 15 2500
8 15 7500
9 15 15000

Given a range of 1..10 for Open and a range of 5000..10000 for AMT, which of the above records should be found (and why)?

  • Like 1
Link to comment
Share on other sites

43 minutes ago, comment said:

I am afraid you're not making your requirement clear enough. Consider the following example:

SerialID Open AMT
1 0 2500
2 0 7500
3 0 15000
4 5 2500
5 5 7500
6 5 15000
7 15 2500
8 15 7500
9 15 15000

Given a range of 1..10 for Open and a range of 5000..10000 for AMT, which of the above records should be found (and why)?

ABOVE database is indian stock exchange  shares database as a screening tool i made this file so that i can know cheapest share with maximum profit so first i am filtering from 1 to 10 priced shares then i want filter shares which are making profit between 5000 to 1000 rupees hope u understand what i meant

Link to comment
Share on other sites

This topic is 1587 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.