Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Crystal Reports recognizes the <code>*</code> as a wild card in like comparisons.</p> <p>From some <a href="http://publib.boulder.ibm.com/infocenter/radhelp/v7r5/topic/com.businessobjects.integration.eclipse.designer.doc/html/topic901.html" rel="nofollow">CR documentation available online</a>:</p> <blockquote> <p>Like pattern operator Basic and Crystal syntax.</p> <p>The Like operator is useful for selecting records to include or exclude from your report. </p> <p>Usage x like y</p> <p>{fieldname} like "c?n*"</p> <p>This operator tests to see if the contents of {fieldname} matches a pattern that you specify in a character string "c?n*". If the contents of the field do fit the pattern "c?n*", then the formula returns the value True. If the field starts with anything else, the formula returns False.</p> <p>Use the wildcard symbols ? and * to stand for variable characters. The ? stands for a single character. The * symbol stands for any number of characters.</p> <p>Examples The following examples are applicable to both Basic and Crystal syntax:</p> <p>{customer.FIRST NAME} like "D?n"</p> <p>TRUE, where {customer.FIRST NAME} = Dan or Don.</p> <p>{customer.FIRST NAME} like "D?n"</p> <p>FALSE, where {customer.FIRST NAME} = Doug or Rob.</p> <p>{customer.LAST NAME} like "<em>s?n</em>"</p> <p>TRUE, where {customer.LAST NAME} = Johnson or Olson or Olsen.</p> <p>{customer.LAST NAME} like "<em>s?n</em>"</p> <p>FALSE, where {customer.LAST NAME} = Johnston or Smith.</p> </blockquote>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload