Fast report expression use more than one filter conditions in delphi

Ishanka

I am trying to filter data using expression in fast report. when i use one condition in the expression it is working properly.

<DSPatientProfileDetails."category"> = 'T-Short term'

But i want more than one condition just like sql where condition. this is what i tried. but it gives error.

<DSPatientProfileDetails."category"> = 'T-Short term' or <DSPatientProfileDetails."category"> = 'A-Antibiotics'

J.Pelttari

I'm adding this as an answer. You should put parenthesis around expressions as in delphi.

(<DSPatientProfileDetails."category"> = 'T-Short term') or (<DSPatientProfileDetails."category"> = 'A-Antibiotics') 

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to have xPath expression for more than one conditions

From Dev

Regular expression to filter URLs that have more than one ampersand "&"

From Dev

How to use more than one query in Pentaho Report Designer?

From Dev

How to use more than one query in Pentaho Report Designer?

From Dev

how to use more than one string in like expression in sql

From Dev

Filter on more than one column

From Dev

subset matrix by more than one thing fast

From Dev

Print more than one row in Crystal Report

From Dev

Delphi - MyDAC - Fast Report

From Dev

more than one AVG column with diffrent conditions

From Dev

Python Pandas: How to filter a dataframe with more than one expression stored in different variables?

From Dev

Is it possible to use stacked expressions / to specify more than one parameter for `CustomFormat` in Delphi LiveBindings?

From Dev

LDAP More than one negation operators in filter

From Dev

Array.filter with more than one conditional

From Dev

Search and Filter on More than one model in angularjs

From Dev

Haskell filter more than one char

From Dev

LDAP More than one negation operators in filter

From Dev

jQueryMobile filter on more than one select

From Dev

filter and lambda: passing more than one argument?

From Dev

filter more than one value in dropdown with jquery

From Dev

Does the processor use more than one stack to separate the call stack from the expression/register stack?

From Dev

analyzer with more than one Stem-filter for more languages

From Dev

Gradle jacoco coverage report with more than one submodule(s)?

From Dev

Gradle jacoco coverage report with more than one submodule(s)?

From Dev

Is it possible to generate more than one page PDF report in R?

From Dev

Custom Filter Class - more than one filter in class

From Dev

Delphi collision detection issues with more than one object

From Dev

How to use componentsSeparatedByString with more than one

From Dev

Use the same file in more than one solution

Related Related

  1. 1

    How to have xPath expression for more than one conditions

  2. 2

    Regular expression to filter URLs that have more than one ampersand "&"

  3. 3

    How to use more than one query in Pentaho Report Designer?

  4. 4

    How to use more than one query in Pentaho Report Designer?

  5. 5

    how to use more than one string in like expression in sql

  6. 6

    Filter on more than one column

  7. 7

    subset matrix by more than one thing fast

  8. 8

    Print more than one row in Crystal Report

  9. 9

    Delphi - MyDAC - Fast Report

  10. 10

    more than one AVG column with diffrent conditions

  11. 11

    Python Pandas: How to filter a dataframe with more than one expression stored in different variables?

  12. 12

    Is it possible to use stacked expressions / to specify more than one parameter for `CustomFormat` in Delphi LiveBindings?

  13. 13

    LDAP More than one negation operators in filter

  14. 14

    Array.filter with more than one conditional

  15. 15

    Search and Filter on More than one model in angularjs

  16. 16

    Haskell filter more than one char

  17. 17

    LDAP More than one negation operators in filter

  18. 18

    jQueryMobile filter on more than one select

  19. 19

    filter and lambda: passing more than one argument?

  20. 20

    filter more than one value in dropdown with jquery

  21. 21

    Does the processor use more than one stack to separate the call stack from the expression/register stack?

  22. 22

    analyzer with more than one Stem-filter for more languages

  23. 23

    Gradle jacoco coverage report with more than one submodule(s)?

  24. 24

    Gradle jacoco coverage report with more than one submodule(s)?

  25. 25

    Is it possible to generate more than one page PDF report in R?

  26. 26

    Custom Filter Class - more than one filter in class

  27. 27

    Delphi collision detection issues with more than one object

  28. 28

    How to use componentsSeparatedByString with more than one

  29. 29

    Use the same file in more than one solution

HotTag

Archive