Crystal Reports XI - Suppression Formula

I am trying to suppress different sections based on fields in my report. I have checked that the formulas are working by placing them in the report and have checked that they are returning the correct boolean result. I have three sections using the forumulas below;
Section A
If pagenumber MOD 2 = 0 then true
else
If {Student__02_03_.Date of Birth}<>DateTime(1900,1,1,0,0,0) and {Student__02_03_.Ethnicity}<>"99" then
    FALSE
else
    TRUE
Section B
If pagenumber MOD 2 = 0 then true
else
If ({Student__02_03_.Date of Birth}=DateTime(1900,1,1,0,0,0) and {Student__02_03_.Ethnicity}<>"99") then
    FALSE //If either date of birth & ethnicity are blank or unknown then show this header
else
If ({Student__02_03_.Date of Birth}<>DateTime(1900,1,1,0,0,0) and {Student__02_03_.Ethnicity}="99") then
    FALSE //If either date of birth & ethnicity are blank or unknown then show this header
else
    TRUE // if not then supress
Section C
If pagenumber MOD 2 = 0 then true
else
If ({Student__02_03_.Date of Birth}=DateTime(1900,1,1,0,0,0) and {Student__02_03_.Ethnicity}="99") then
    FALSE //If both date of birth & ethnicity are blank or unknown then show this header
else
    TRUE // if not then supress
For my first result in the report this always returns the correct section. However, from the second result on it hides all of the sections, despite showing the correct result in CR (they show FALSE, TRUE, TRUE for each record in my current result. But the first section does not display.
If I remove the suppression formula it works fine through the report, but unfortunately this does not help me! Can anyone offer any suggestions?
Edited by: cataylor951 on Jan 12, 2011 12:08 PM

>
cataylor951 wrote:
> I am trying to suppress different sections based on fields in my report. I have checked that the formulas
are working by placing them in the report and have checked that they are returning the correct boolean result.
I have three sections using the forumulas below;
>
> Section A
>
If pagenumber MOD 2 = 0 then true
> else
> If {Student__02_03_.Date of Birth}<>DateTime(1900,1,1,0,0,0)
> and {Student__02_03_.Ethnicity}<>"99" then
> then   FALSE
> else   TRUE
>
> Section B
>
If pagenumber MOD 2 = 0 then true
> else
> If ({Student__02_03_.Date of Birth}=DateTime(1900,1,1,0,0,0)
> and {Student__02_03_.Ethnicity}<>"99") then
>     FALSE
> //If either date of birth & ethnicity are blank or unknown then show this header
> else
> If ({Student__02_03_.Date of Birth}<>DateTime(1900,1,1,0,0,0)
> and {Student__02_03_.Ethnicity}="99") then
>     FALSE
> //If either date of birth & ethnicity are blank or unknown then show this header
> else TRUE // if not then supress
>
> Section C
>
If pagenumber MOD 2 = 0 then true
> else
> If ({Student__02_03_.Date of Birth}=DateTime(1900,1,1,0,0,0)
> and {Student__02_03_.Ethnicity}="99")
> then  FALSE
> //If both date of birth & ethnicity are blank or unknown then show this header
> else
>     TRUE // if not then supress
>
> For my first result in the report this always returns the correct section. However, from the second
result on it hides all of the sections, despite showing the correct result in CR
(they show FALSE, TRUE, TRUE for each record in my current result. But the first section does not
display.
>
> If I remove the suppression formula it works fine through the report, but unfortunately this does not
help me! Can anyone offer any suggestions?
>
> Edited by: cataylor951 on Jan 12, 2011 12:08 PM
What do you mean by: from the second result  ?

Similar Messages

  • Crystal report 2011 - Suppress formula?

    I'm not new to Crystal reports 2011, but I am new to this forum. Excuse me if my question is already answered in another discussion thread, but I've searched the forum, but could not find an answer easily.
    In my report I need to total the amount per day per security. If one of the totals per day have a negative amount, my report should show all dates for that security.
    To make it more clear to you I've put in two examples
    Example 1:
    From date      PfGrp        Por         Security      ISIN          Custody     Amount
    15-1-2015      aaa           por_a      Sec01        123456      Cust01      5000
    15-1-2015      aaa           por_b      Sec01        123456      Cust02      -6000
    16-1-2015      aaa           por_a      Sec01        123456      Cust01       5000
    16-1-2015      aaa           por_b      Sec01        123456      Cust02       1000
    17-1-2015      aaa           por_a      Sec01        123456      Cust01       2000
    17-1-2015      aaa           por_b      Sec01        123456      Cust02       1000
    Expected output:
    From date      PfGrp        Por         Security      ISIN          Custody     Amount
    15-1-2015      aaa                          Sec01        123456                         -1000
    16-1-2015      aaa                          Sec01        123456                          6000
    17-1-2015      aaa                          Sec01        123456                          3000
    Output expected because the total amount on 15-1-2015 is negative. Because of this negative total amount the other dates have to be shown as well.(although they are positive)
    Example 2:
    From date      PfGrp        Por         Security      ISIN          Custody     Amount
    15-1-2015      aaa           por_a      Sec01        123456      Cust01       5000
    15-1-2015      aaa           por_b      Sec01        123456      Cust02       6000
    16-1-2015      aaa           por_a      Sec01        123456      Cust01       5000
    16-1-2015      aaa           por_b      Sec01        123456      Cust02       1000
    17-1-2015      aaa           por_a      Sec01        123456      Cust01       2000
    17-1-2015      aaa           por_b      Sec01        123456      Cust02      -1000
    No output expected because all the totals per day are positive.
    Regards, Peter.

    Hi Peter,
    Try this please:
    1) Save the existing report with a new name. You should now have two copies of the same report - let's call them A and B.
    2) Open Report A.
    3) Insert a Group on the Security Field first and then on the Date field. Set the Date Field to 'Print for Each Day'.
    4) Create a formula (@Groups) with this code and place this on Group Header #2:
    WhilePrintingRecords;
    stringvar groups;
    If Sum ({Amount}, {Date}) < 0 then
        If Instr(groups,{Security}) = 0 then   
            groups := groups + {Security} + ",";   
    groups;
    5) Suppress all sections of this report except the Report Footer.
    6) Go ahead and Insert a Subreport. In the Insert Subreport dialog box, browse to the Report B and place it on the Report Footer.
    7) Edit the Subreport so that it has the same groups as the Main Report (or Report A)
    8) Right-click the Subreport > Change Subreport Links > Move the @Groups formula to the Pane on the right > Uncheck the option 'Select data in Subreport based on Field' > Click OK.
    9) Get inside the Subreport > Click the Report Option > Selection Formulas > Record and use this code:
    Not({Security} IN Split({?Pm-@Groups},","))
    IF you have some existing selection formula in there, then you would need to add this condition with an AND clause.
    Hope this helps.
    The reason we have to add a Subreport is because you're trying to suppress a higher group based on a summary that appears on a lower group.
    If you're reporting off of tables, you should be able to use a SQL Expression Field to display the summary for Group #2 and use this summary to suppress the higher section based on another logic!
    -Abhilash

  • Crystal Reports 11.5 Formula editor hangs

    Hi, when i enter formula editor the application hangs. It happens on any report, new one, blank one, old ones.I tried to reinstall the whole package, but same results. Please someone have any idea? Arie
    Edited by: klebaner on Sep 27, 2011 2:41 PM

    Thank you Don,
    I use XP.
    When i activated Process Monitor, i get the many different errors, the ones related to formulas are as follow.
    Do you have any idea what can cause it?
    thank you
    01:42:45.2285969     crw32.exe     1660     RegQueryValue     HKCU\Software\Business Objects\Suite 11.5\Crystal Reports\Formula Workshop\Formula\ToolBar-Bar0\Visible     NAME NOT FOUND     Length: 144
    01:42:45.2287746     crw32.exe     1660     RegQueryValue     HKCU\Software\Business Objects\Suite 11.5\Crystal Reports\Formula Workshop\Formula\ToolBar-Bar0\Horz     NAME NOT FOUND     Length: 144
    01:42:45.2289361     crw32.exe     1660     RegQueryValue     HKCU\Software\Business Objects\Suite 11.5\Crystal Reports\Formula Workshop\Formula\ToolBar-Bar0\Floating     NAME NOT FOUND     Length: 144
    01:42:45.2290986     crw32.exe     1660     RegQueryValue     HKCU\Software\Business Objects\Suite 11.5\Crystal Reports\Formula Workshop\Formula\ToolBar-Bar0\YPos     NAME NOT FOUND     Length: 144
    01:42:45.2293062     crw32.exe     1660     RegQueryValue     HKCU\Software\Business Objects\Suite 11.5\Crystal Reports\Formula Workshop\Formula\ToolBar-Bar0\XPos     NAME NOT FOUND     Length: 144
    01:42:45.2294674     crw32.exe     1660     RegQueryValue     HKCU\Software\Business Objects\Suite 11.5\Crystal Reports\Formula Workshop\Formula\ToolBar-Bar0\MRUWidth     NAME NOT FOUND     Length: 144
    01:42:45.2296314     crw32.exe     1660     RegQueryValue     HKCU\Software\Business Objects\Suite 11.5\Crystal Reports\Formula Workshop\Formula\ToolBar-Bar0\Docking     NAME NOT FOUND     Length: 144
    01:42:45.2341756     crw32.exe     1660     RegQueryValue     HKCU\Software\Business Objects\Suite 11.5\Crystal Reports\Formula Workshop\Formula\ToolBar-Bar1\Visible     NAME NOT FOUND     Length: 144
    01:42:45.2343527     crw32.exe     1660     RegQueryValue     HKCU\Software\Business Objects\Suite 11.5\Crystal Reports\Formula Workshop\Formula\ToolBar-Bar1\Horz     NAME NOT FOUND     Length: 144
    01:42:45.2345340     crw32.exe     1660     RegQueryValue     HKCU\Software\Business Objects\Suite 11.5\Crystal Reports\Formula Workshop\Formula\ToolBar-Bar1\Floating     NAME NOT FOUND     Length: 144
    01:42:45.2350360     crw32.exe     1660     RegQueryValue     HKCU\Software\Business Objects\Suite 11.5\Crystal Reports\Formula Workshop\Formula\ToolBar-Bar1\MRUWidth     NAME NOT FOUND     Length: 144
    01:42:45.2368010     crw32.exe     1660     RegQueryValue     HKCU\Software\Business Objects\Suite 11.5\Crystal Reports\Formula Workshop\Formula\ToolBar-Bar1\Bars     NAME NOT FOUND     Length: 144
    01:42:45.2408258     crw32.exe     1660     RegQueryValue     HKCU\Software\Business Objects\Suite 11.5\Crystal Reports\Formula Workshop\Formula\ToolBar-Bar2\Visible     NAME NOT FOUND     Length: 144
    01:42:45.2412524     crw32.exe     1660     RegQueryValue     HKCU\Software\Business Objects\Suite 11.5\Crystal Reports\Formula Workshop\Formula\ToolBar-Bar2\Horz     NAME NOT FOUND     Length: 144
    01:42:45.2414195     crw32.exe     1660     RegQueryValue     HKCU\Software\Business Objects\Suite 11.5\Crystal Reports\Formula Workshop\Formula\ToolBar-Bar2\Floating     NAME NOT FOUND     Length: 144
    01:42:45.2420039     crw32.exe     1660     RegQueryValue     HKCU\Software\Business Objects\Suite 11.5\Crystal Reports\Formula Workshop\Formula\ToolBar-Bar2\MRUWidth     NAME NOT FOUND     Length: 144
    01:42:45.2439807     crw32.exe     1660     RegQueryValue     HKCU\Software\Business Objects\Suite 11.5\Crystal Reports\Formula Workshop\Formula\ToolBar-Bar2\Bars     NAME NOT FOUND     Length: 144
    01:42:45.2474102     crw32.exe     1660     RegQueryValue     HKCU\Software\Business Objects\Suite 11.5\Crystal Reports\Formula Workshop\Formula\ToolBar-Bar3\Visible     NAME NOT FOUND     Length: 144
    01:42:45.2475890     crw32.exe     1660     RegQueryValue     HKCU\Software\Business Objects\Suite 11.5\Crystal Reports\Formula Workshop\Formula\ToolBar-Bar3\Horz     NAME NOT FOUND     Length: 144
    01:42:45.2477530     crw32.exe     1660     RegQueryValue     HKCU\Software\Business Objects\Suite 11.5\Crystal Reports\Formula Workshop\Formula\ToolBar-Bar3\Floating     NAME NOT FOUND     Length: 144
    01:42:45.2482519     crw32.exe     1660     RegQueryValue     HKCU\Software\Business Objects\Suite 11.5\Crystal Reports\Formula Workshop\Formula\ToolBar-Bar3\MRUWidth     NAME NOT FOUND     Length: 144
    01:42:45.2499133     crw32.exe     1660     RegQueryValue     HKCU\Software\Business Objects\Suite 11.5\Crystal Reports\Formula Workshop\Formula\ToolBar-Bar3\Bars     NAME NOT FOUND     Length: 144

  • Crystal report viewer suppressing pages

    I have a crystal 8.5 report that is group by:
    - report type
       - name
         - contract number
           -date
    detail                               
        -date footer (suppressed)
       - contract footer
    - name footer (suppressed)
    - report type footer (suppressed)
    for the contract number group i have the 'keep group together' checked in the change group options box.
    the detail lines print only when report type = 1 or 6 and the contrct footer only prints when report type <> 1 and <> 6, when the detail is printing, everything looks great, but when the detail doesn't print and just the contract footer prints that's where I have a problem.
    when the report is first displayed in the viewer and i start on the last page of the report and page back i can see all my data, but when i page forward from page 1, i'm missing a couple of pages after the detail stops printing and only the contract footer data should print.
    can anybody help!!!
    thanks,
    dan

    Not many users still have CR 8.5 so not likely anyone can help you. Try downloading all of the patches, it may help....

  • Reverse Sign in Crystal report

    Hi,
    I am working on CR 2008 and SAP BEx query.My report requirement is to change the sign of values.
    Suppose if one value is negative then show in the report as positive.same for positive to Negative.
    I know how to do in the SAP Bi report.
    If any one know then plz let me know how can we do in the crystal report.

    Create a formula field and add a simple formula there that multiplies your key figure with -1. Add then the formula filed in your report instead of the original key figure.
    Regards,
    Stratos

  • Crystal Reports hides rows from source BW query

    Hi Experts,
    I currently have a BW query with two structures: 1) key figure structure in the columns and 2) another characteristics structure in the rows.
    Here are additional details:
    1.  I have the MDX connectivity transports installed
    2.  I have successfully linked a crystal report to this source BW query.
    My only problem is that if a certain row in the source BW report is blank (meaning it does not have any values), Crystal Reports automatically suppresses it and does not show my full row structure in the output.  I would like the report to show all rows regardless of any data values or lack of.  I do not have zero suppression in BW or Crystal Reports.
    Thanks

    Hi,
    I would recommend to extract the MDX query out of your CR report ( Database->Show SQL statement) and use the MDX transaction to test it directly against your BW server. This way you make sure if the suppression takes place already on the BW side or in the CR itself.
    Regards,
    Stratos

  • Is there a way to Extract all formulas from Crystal Reports files?

    Hi:
    I have about 40 Crystal Reports (.rpt files).  I need to go through each one and look at formulas if a certain variable/value is used since it has currently changed.  It is taking way too long and not to mention inefficent to open each file, look through any place where there could be custom formulas such as when to suppress - etc.  Is there are way to easily exact all custom formulas from all those report into say a Text file so I can do a Search for it?  That would be the easiest way to find what I'm looking for.
    I have Crystal Reports XI.
    Thanks in advance for your help.

    One option is to use a tool such as rptInspector.  See: [http://www.softwareforces.com/Product/ri/pro/3/rptInspector.htm|http://www.softwareforces.com/Product/ri/pro/3/rptInspector.htm]

  • Crystal Reports 8.5 Multi-Selection Formulas

    Let me start by saying that I am fairly new to Crystal Reports design, so I appreciate your patience as I try to describe my issue to you.
    I am using Crystal Reports 8.5 with an Oracle database.  The database contains a field that I refer to as a multi-selection field, meaning that end-users have the ability to select zero, one, or all values available to them in that field.
    I am designing a Crystal Report which has a checkbox for each of the selection values within the multi-selection field. So, if the end-user selects three of the values in that field, then three checkboxes appear checked, while all the others checkboxes remain empty.  I have no problem getting the checkboxes to appear; that's not the issue.
    I have tried using direct table linking and views, subreports, formulas and running totals in a number of different combinations,
    to no avail. The results have been mixed; most of the time, only one of the values gets a checked box, while all the other checkboxes are blank. Other times (with some of the subreports) it returns a full set of checkboxes with only one box checked, for each selection value that is chosen in the record.
    My basic formula for the field looks like the following, and the formula is repeated for each checkbox (country).
    if {TW_V_COUNTRY.S_VALUE} = "Japan" then chr(253) else chr(168)
    The closest I've gotten to this report working correctly is when I link an alias of the view for each country.  If I have a view for two countries and select those two values in a record, both checkboxes appear checked.  However, if I add more views for additional countries and select those values within the record, only one checkbox appears checked.
    Has anyone ever done something like this successfully? I'd appreciate any help I can get. Thank you in advance.

    Okay, I know I've said this before, but this time it really works!
    I saw something online about how crystal processes null fields - that if it reaches a null value, it will stop processing it altogether.  Here's what I saw online about null fields: http://publib.boulder.ibm.com/infocenter/iadthelp/v7r0/index.jsp?topic=/com.businessobjects.integration.eclipse.designer.doc/designer/Crystal_Syntax47.html
    I have successfully created a report that will display all of the appropriate checkboxes - blank or checked.  This method does NOT use custom views.
    My report uses a separate subreport for each selection value in the multiselection field.  The subreports are located in the Group Footer of the main report.  Each subreport has PR.ID left outer linked to the VIEW.PR_ID.  Each subreport is grouped by PR.ID.  Each subreport contains a formula for the corresponding selection value:
    WhilePrintingRecords;
    global StringVar VarCH;
    If VarCH = "" then
    VarCH:= if IsNull({VIEW.S_VALUE}) then chr(168) else
    if {VIEW.S_VALUE} = "Swiss Confederation - CH" then chr(253)
    else chr(168);
    WhilePrintingRecords;
    global StringVar VarCH;
    VarCH
    Each selection value has an abbreviation: AT, BE, BU, CH, CY, CZ, etc.  So, in the above formula, the only difference for each selection value is the name of the variable: VarAT, VarBE, VarBU, etc., and the actual selection value itself: Republic of Austria - AT, Swiss Confederation - CH, etc.  However, it may work with one universal variable throughout, like VarCountries. 
    The formula field is placed into the Group Footer within each subreport, formatted with Wingding font.  All other subreport sections are suppressed.  The subreport is placed next to its corresponding text object on the main report.  The subreports are linked to the main report: PR.ID --> VIEW.PR_ID.

  • Suppressing NuLL values in Crystal Report

    Hi....
    I m facing a problem,i use asp.net and  I have designed a Crystal Report.I had to place Text Objects in the the details section along with the corresponding Records from Database as per the Reports Design needed. Now i want that the NULL values in the report should be suppressed and should be disappeared  along with the static Text Objects. Like as it happens in Grid view in ASP .net
    Please Help me to solve this issue..
    Thank you

    I think i have been able to do it with little compliated suppress logic.
    When i design the report this is how it looks in design mode:
    Line1  Field1
    Line2  Field2
    Line3  Field3
    and when Field 2 is null or contains a blank string the output should look like:
    Line1  Field1
    Line3  Field3
    1. Initially just design the text fields and db fields without any suppress.
    2. Check Suppress for Line 2 and use the formula: isnull({Table.Field2}) . Do nothing to Field2. This should suppress Line2 when Field2 is null, you can also add StrCmp({Table.Field2}, "") = 0 for checking blank strings.
    3. Now copy Object Line3 and Field3 and place on top of Line2 and Field2 respectively so that their positions match. Let these newly copied objects be Line3_1 and Field3_1 respectively.
    4. Line3_1 and Field3_1 should be suppressed if Field2 contains a non null value. So for both of them Click Suppress checkbox and add the following in the format formula editor not isnull({Table.Field2})
    5. If Line3_1 and Field3_1 are visible = Field2 is null\empty -> Line3 and Field3 should be suppressed or the output would be like:
    Line1 Field1
    Line3 Field3
    Line3 Field3
    So to remove the duplicate:
    For both of them Click Suppress checkbox and add the following in the format formula editor isnull({Table.Field2})
    Hope this helps. I will see if I can attach a sample report based on xtreme here.

  • Crystal Report Formula to select Record  of only MAX Value

    hi Everyone,
    i need a simple crystal report formula to select one department whose recived quantity Maximum.
    for example:
    itemcode    dscription      departmen   op       recived       issue        
      1                   a                ab               2              2              2         
      1                   a                bb              0             2              2          
      1                   a                bc               4             8              2         
      1                   a                cc              2              2              2
    i group by item  the item show just once but i want a formula to show one department who's recived quantity is maximum.i suppress the detail section.and just show the group footer/
    itemcode    dscription      departmen   op       recived       issue        
      1                   a                  bc                 8             14             8 

    Thanks
    Re: Crystal Report Formula to select Record  of only MAX Value
    Abhilash Kumar

  • Crystal report - Suppressing particular Group by

    HI,
    I have a particular crystal report in which we have multiple group by. Different options are given to the user to select the group by while executing the report. If the user selects a group by 1, and 5 then the report should be grouped by only the 1 and 5 and grouping should not be done on the basis of 2,3 and 4.
    I have inserted multiple group by in the report. I am suppressing the groups 2,3 and 4 when only 1 and 5 are selected. The groups are not visible but they still impact the result and the data shown is grouped at all the levels.
    Can anyone please let me know the solution for the same.
    Regards,
    Simran

    hi Simran,
    you need to create a set of formulae to group on and not use suppression on hard coded groups. for example, create a formula such as
    if {?groupone} = 'Country' then {my country field} else
    if {?groupone} = 'First Name' then {my first name field} else
    you need to create one formula for every group level as well as a parameter for every group. for example groupfour
    if {?groupfour} = 'Country' then {my country field} else
    if {?groupfour} = 'First Name' then {my first name field} else
    if {?groupfour} = 'No Group' then ''
    you can suppress the group header and footer for Group 4 when {?groupfour} = ''
    please see the attached report as an example. change the .txt extension to .rpt after you extract the contents.
    cheers,
    jamie

  • Crystal Report issue : Error in file.. .rpt . Error in formula

    Hi ,
    I recently migrated a report from production to test environemnt and it throws me the following error:
    Error in File C:\DOCUME1\oe_user\LOCALS1\Temp\packing instructions {4058873B-9756-4052-B479-EBD2D0A08E7D}.rpt:Error in formula  <Object_Visibility>. '{Command.EXACT_WEIGHT_FLAG} = "Ne (No)"'
    This field name is not known.
    In production server is installed Oracle 9i database and in test server is installed Oracle 10g
    The report has 1 main report and 2 sub reports.
    1. The same report works fine in production server without any issues.
    2. I had executed the report in Crystal reports 2008 and it runs fine displaying all fields without any issues.
    3. I had also tried taking the query of both subreports and the main report and tried executing it in oracle and it runs fine without any issues.
    However during the runtime in the test server, it throws the following error.
    Can someone help me out with this issue..

    Hi Siva,
    What is the patch level of CR 2008?
    Is it a win or a web app?
    What is the server OS?
    First, try to simply view the report. Let  the report prompt for the database credentials and the parameter values if any.
    See if it reproduces the issue.
    ReportDocument rd = new ReportDocument();
            rd.Load(Server.MapPath("CrystalReport.rpt"));
            CrystalReportViewer1.ReportSource = rd;
    Take a look at the SAP Note :
    [1421867 - Error: This field name is not known|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333433323331333833363337%7D.do]
    Hope it helps,
    Thanks,
    Bhushan.

  • Crystal Report XI Formula Workshop Window disappeared

    I'm been trying to write a report using Crystal Reports XI.  Which I am having problems with, but at this time my main concern is... whenever I click on the Formula Workshop the application totally hangs and the box never comes up.  You can here it beep like the window should be hiding but I have been unable to find.  I usually run 2 screens and it is not on the other screen.  I am a PC person more than a Crystal Report person and can't find it anywhere.  I tried to run a repair and that didn't work either.  I can kit esc to unlock everything but i need this to build some formulas.  Suggestions?

    Hi,
    That's usually because the Formula Editor is 'lost in space'. Here's are two ways to get around this:
    Resolution 1:
    1) Open Crystal Reports on any machine with dual monitor setup
    2) Click on the Conditional Formatting button (x+2) of any field
    3) Now, with Crystal Reports open and in focus use Alt + Space, then M, then Arrow key, and then move your mouse around
    4) The Formula Editor window which was earlier off-screen should appear from one of the sides of the screen
    5) Re-open the report and the Formula Editor should show up on the Primary Display hereafter
    Resolution 2:
    1) Open the Registry Editor (Start > Run > regedit)
    2) Browse to HKEY_CURRENT_USER\SOFTWARE\BUSINESS OBJECTS\SUITE 11.0\Crystal Reports\Formula Workshop
    3) Change the value data for Editor Position as 10,10,10,10
    Let me know how this goes!
    -Abhilash

  • How to suppress "enter parameter values" screen in crystal reports for Visu

    Hi,
        I am passing parameters to the report through program.  But still the "Enter Parameter Values" Dialog is shown every time I run the application.  Code used to pass parameters is given below:
                    rptCBBookRpt objRptCBBook = new rptCBBookRpt();
                    objRptCBBook.SetParameterValue("@Branch", strBranch);
                    objRptCBBook.SetParameterValue("@CoName", mdlFinIF.objCommon.CoName);
                    objRptCBBook.SetParameterValue("@Heading", strHeading);
                    objRptCBBook.SetParameterValue("@UserInfo", mdlFinIF.objCommon.ReportInfo());
    How can I suppress the "Enter Parameter Values" dialog.  Please help.
    Cris Evan

    Well, no. But this being a community, not technical support, you may get a response, perhaps even an actual answer, or you may not...
    If you are not getting a response or an answer, you may want to consider obtaining a dedicated support here:
    http://store.businessobjects.com/store/bobjamer/en_US/pd/productID.98078100?resid=S6I@hgoHAkEAAGsiyVkAAAAR&rests=1282226845369
    Look at samples here:
    https://wiki.sdn.sap.com/wiki/display/BOBJ/CrystalReportsfor.NETSDK+Samples
    Check out the [Crystal Reports for Visual Studio 2005 Walkthroughs|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/2081b4d9-6864-2b10-f49d-918baefc7a23] - it will apply to your version of CR...
    And of course, developer help files.
    - Ludek

  • How to use the distinct key in formula field in SAP Crystal Reports

    I want to use the distinct key in formula field in SAP Crystal reports.
    When i'm using it shows an error.
    Please suggest me....

    Hi,
    Use DistinctCount keyword directly for your calculation instead of count(distinct(....
    Alternatively, if you want to avoid duplicate records, under "File" > "Report Options" make the 'Select Distinct Records' as True.
    Thanks,
    Raghavendra

Maybe you are looking for

  • Text selection no longer working properly

    I'm using Acrobat 9.0.0 on Mac OS 10.4.11. I have to copy and paste text from .pdf files. Everything was working fine, but now suddenly, I am unable to select text across pages (i.e. it can only do one page at a time) and also, when I paste the text

  • GRC AC 5.3 CUP to create users in AD?

    Hello Experts, Could anyone answer to the following questions? Can I script in CUP to update HR master  record email address (infotype: 0105) while request workflow in progress? What are the functionalities in CUP can be customized and scripted? Than

  • Change in PO after payment

    Hi friends, I have a situation where, one of the PO has been posted to GL account instead of assets. User MIRO,MIGO and Payment has been already done and check has been sent to vendor already. What would be the ideal situation to change the accounts

  • HP 2511x Monitor

    I have an HP Envy dv7 and I just upgraded from Windows 8 to Windows 8.1 and as a result of this I fear that my PC /Laptop does not recognize the Monitor. I am connected to the Monitor via a Targus v3 Docking Station. I tried to download and install t

  • Deleting large number of records

    Hi Gurus, I need to delete millions of records from a table of a specific column. This cloumn is of type BLOB and text data in column looks like #29/07/2010 2:20 PM#Eevent#MyEvent#MyClass_classToSchedule=abcd I need to delete records based on partial