Results 1 to 2 of 2

Thread: Using Filter Command with AND boolean function to count.

  1. #1
    Member
    Join Date
    2012-05
    Posts
    2

    Arrow Using Filter Command with AND boolean function to count.

    good day for all with my respects,
    i am quantity surveyor . i am going to calculate steel types with spaces using filter command selection ..so i need help from you (with thanking) to show the way that i must arrange the boolean functions to do this : selecting all the texts (regardless of its layers or attributes) that containing some value such as 200 and its colour is green this is first condition the second condition (AND) all texts containing 2 parameter (1. its value is T20 , 2. its other value is L=400) ..please how can i do that in the FILTER command..very thanks.

    I had tried this code inside the filter command ,but its not worked with me !

    **begin AND
    Object = Text
    Color = 3-Green
    Text Value = 200
    **End AND
    **Begin AND
    Object = Text
    Text Value = 7T20
    **End AND
    **Begin AND
    Object = Text
    Text Value = L=400
    **End AND
    Last edited by adnhmz593474; 2012-05-21 at 06:10 AM. Reason: adding more info

  2. #2
    Active Member
    Join Date
    2012-02
    Posts
    54

    Default Re: Using Filter Command with AND boolean function to count.

    Quote Originally Posted by adnhmz593474 View Post
    good day for all with my respects,
    i am quantity surveyor . i am going to calculate steel types with spaces using filter command selection ..so i need help from you (with thanking) to show the way that i must arrange the boolean functions to do this : selecting all the texts (regardless of its layers or attributes) that containing some value such as 200 and its colour is green this is first condition the second condition (AND) all texts containing 2 parameter (1. its value is T20 , 2. its other value is L=400) ..please how can i do that in the FILTER command..very thanks.

    I had tried this code inside the filter command ,but its not worked with me !

    **begin AND
    Object = Text
    Color = 3-Green
    Text Value = 200
    **End AND
    **Begin AND
    Object = Text
    Text Value = 7T20
    **End AND
    **Begin AND
    Object = Text
    Text Value = L=400
    **End AND
    I'm not sure if I fully understood what you're looking for.. But if you want to select all green texts that have value 200 and texts that have value 7T20 then your filter should like about this:

    **begin OR
    **begin AND
    Object = Text
    Color = 3-Green
    Text Value = 200
    **End AND
    **Begin AND
    Object = Text
    Text Value = 7T20
    **End AND
    **End OR

Similar Threads

  1. Command function in reactor
    By newfoundfreedom in forum AutoLISP
    Replies: 10
    Last Post: 2011-09-27, 07:20 PM
  2. How to access Filter command through command line
    By sandeep_koodal in forum AutoCAD General
    Replies: 10
    Last Post: 2009-05-09, 07:19 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •