Second part of formula not working

Good morning
I have this formula below
IF IsNull({GfCnSpSpBio.GfCnSpSpBio_IDKEY}) and {GfCnBio.GfCnBio_Key_Indicator} = "I" then
{GfCnBio.GfCnBio_Title_1} + " " + {GfCnBio.GfCnBio_Last_Name}
else if {GfCnSpSpBio.GfCnSpSpBio_Spouse_ID} <> 0 and {GfCnBio.GfCnBio_Key_Indicator} = "I"
then {GfCnBio.GfCnBio_Title_1} + " & " + {GfCnSpSpBio.GfCnSpSpBio_Title_1} + " "+{GfCnBio.GfCnBio_Last_Name}
This part of the formula in crystal reports is not working, the salutation just shows up as blank.  Does it have to do with a JOIN with teh tables.
else IF ({GfCnBio.GfCnBio_Key_Indicator} = "O"  //Organizations
AND IsNull({GfCnRelCt_1.GfCnRelCt_1_Title_1}) OR isNull({GfCnRelCt_1.GfCnRelCt_1_Last_Name}) )THEN
    "Supporter"
ELSE
  {GfCnRelCt_1.GfCnRelCt_1_Title_1} + " " + {GfCnRelCt_1.GfCnRelCt_1_First_Name} + " " +
{GfCnRelCt_1.GfCnRelCt_1_Last_Name} + ",";
I am not sure what i am doing wrong here.
Thanks

Thank you for your help.
I used the formula below and it worked
IF IsNull({GfCnSpSpBio.GfCnSpSpBio_IDKEY}) and {GfCnBio.GfCnBio_Key_Indicator} = "I" then
{GfCnBio.GfCnBio_Title_1} + " " + {GfCnBio.GfCnBio_Last_Name}+ ","
else if {GfCnBio.GfCnBio_Key_Indicator} = "I"
//{GfCnSpSpBio.GfCnSpSpBio_Spouse_ID} <> 0 and {GfCnBio.GfCnBio_Key_Indicator} = "I"
then {GfCnBio.GfCnBio_Title_1} + " & " + {GfCnSpSpBio.GfCnSpSpBio_Title_1} + " "+{GfCnBio.GfCnBio_Last_Name} + ","
else IF ({GfCnBio.GfCnBio_Key_Indicator} = "O"  //Organizations
AND IsNull({GfCnRelCt_1.GfCnRelCt_1_Title_1}) OR isNull({GfCnRelCt_1.GfCnRelCt_1_Last_Name}) )THEN
    "Supporter"
ELSE
  {GfCnRelCt_1.GfCnRelCt_1_Title_1} + " " + {GfCnRelCt_1.GfCnRelCt_1_First_Name} + " " +
{GfCnRelCt_1.GfCnRelCt_1_Last_Name} + ",";

Similar Messages

  • HT204365 Hi  I wonder if you could please assist me. I tried the online 'contact us" I  chose my iPad - but when I need to chose the second part - it does not give  me any options - hence I cannot go further?   My kindle does not want to open on my iPad.

    Hi
    I wonder if you could please assist me. I tried the online 'contact us" I
    chose my iPad - but when I need to chose the second part - it does not give
    me any options - hence I cannot go further?
    My kindle does not want to open on my iPad. When I touch it - a grey screen
    with kindle written in the middle appear for a few seconds. Then goes away.
    I have restarted the iPad - still the same? What else can I do?
    Thanks
    Maryna

    Judging by the reviews of the current version of the Kindle app you aren't the only one haveing problems with it - it looks like Amazon need to fix something with the app.
    Have you tried closing the Kindle app via the iPad's multitasking bar and seeing if it works when you re-open it ? Double-click the home button to open the taskbar, and then swipe or drag the Kindle app's screen from there up and off the top of the screen to close it, and click the home button to close the taskbar.
    You could also try deleting the app and redownloading it via the Purchased tab in the App Store app on it (you will then need to redownload your books in the app, assuming that it opens).

  • Hello, I just did an update and now the second Language - Hebrew - does not working. why?

    Hello, I just did an update and now the second Language - Hebrew - does not working. why?

    More information please.
    If you are on adobe cloud, download indesign that support hebrew from CC desktop. Click on the preference gear on the top right then select App language.

  • The second Earphone jack will not work. My DV6000 is only one month old.

    The second Earphone jack will not work, but I get static when I plug my earphones into it. The other jack works ok. I need help in fixing it. My DV6000 is only one month old.
    This question was solved.
    View Solution.

    HI,
    Robert96 wrote:
    The second Earphone jack will not work, but I get static when I plug my earphones into it. The other jack works ok. I need help in fixing it. My DV6000 is only one month old.
    One of the jacks is for audio in and the other is for audio out. Some select versions have an S/PD/F jack. Chances are the reason you are getting static is that if you plug an earphone into a microphone jack it will attempt to behave as a microphone. It will not operate properly.
    So..a recap. There is only one earphone jack
    Best regards,
    erico
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

  • Parallel hint as part of index not working

    Hello,
    I think that I am misusing the parallel hint on this one, and would appreciate some guidance. I have an insert statement as such:
    INSERT INTO TABLE1
    SELECT column1, column2
    FROM table2;
    I modified the query so that it has a parallel:
    SELECT /*+ FULL(table2) PARALLEL(table2, 4) */
    column1, column2
    FROM table2;
    This parallel helps with the query's speed. However, when I use it with the insert statement on the top, it does not insert any record, nor does it give an error message:
    INSERT INTO TABLE1
    SELECT /*+ FULL(table2) PARALLEL(table2, 4) */
    column1, column2
    FROM table2;
    I put EXECUTE IMMEDIATE 'ALTER SESSION ENABLE PARALLEL DML'; at the beginning of the procedure, but that did not help.
    I really need the parallel to be in the SELECT statement, that statement runs for about 3 hours without a parallel (due to large amounts of data - no problems with query itself), however it returns only about 10,000 records, and I don't need to insert those with a parallel hint.
    Edited by: user577453 on Mar 17, 2009 12:25 PM -- Added last paragraph.

    user577453 wrote:
    I think that I am misusing the parallel hint on this one, and would appreciate some guidance. I have an insert statement as such:
    I put EXECUTE IMMEDIATE 'ALTER SESSION ENABLE PARALLEL DML'; at the beginning of the procedure, but that did not help.
    I really need the parallel to be in the SELECT statement, that statement runs for about 3 hours without a parallel (due to large amounts of data - no problems with query itself), however it returns only about 10,000 records, and I don't need to insert those with a parallel hint.First of all, your subject is probably supposed to be "Parallel hint as part of *insert* not working" rather than "Parallel hint as part of *index* not working", am I right?
    Can you show us the EXPLAIN PLAN output you get for your query and the one you get for your INSERT when using the parallel hints as posted?
    Please mention your database version (4-digits, e.g. 10.2.0.3).
    Please use DBMS_XPLAN.DISPLAY to format the EXPLAIN PLAN output if you're already on 9i or later, and please use the \ tag before and after the DISPLAY output to format it in fixed font for readability.
    What seems to be odd that you say that the result of the query seems to be different when using it as part of the INSERT statement? Are you sure that running the query standalone returns data whereas using exactly the same query in the INSERT statement inserts no records? This would be buggy behaviour.
    Regards,
    Randolf
    Oracle related stuff blog:
    http://oracle-randolf.blogspot.com/
    SQLTools++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676/
    http://sourceforge.net/projects/sqlt-pp/                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Formula not working in report

    In one of the report, there is a formula added as
    v_Hide:= If [v_ResourceSum]=0 And v_CTier="Not Alighned" and IsNull([v_LatestAnalystCycle]) then "Hide" Else "".
    Then this filter is added on the report to exclude when v_Hide="Hide"
    This formula is not working.
    Using BO 4.0

    Hi Pritesh,
    once the field V_HIDE got populated.
    Modify the internal table with the field value.
    You can use the below statement to filter the contents of the internal table.
    Delete <internal_table> where v_hide IS NOT INITIAL.
    Thanks,
    TK Agarwal

  • Formulas not working in Reader

    I have a simple formula that I've created in Acrobat that adds a user's input in 3 cells and displays the result in yet a 4th cell. The formula is not working once I open the pdf in Reader. I've used "Extend Features in Adobe Reader" but that doesn't seem to make the formulas function in Reader. Any suggestions?

    Is JavaScript and/or automatic calculations enabled for Reader? If so, can you post the document online somewhere (e.g., Acrobat.com) so we can check it out? If not, I'd be interested in looking at it if you're free to send it by email. My address is in my profile.

  • Second monitor on iMac not working with Lion

    I have a mid-2011 Thunderbolt 21.5" iMac. A secondary monitor is connected to the iMac with a Mini DisplayPort-to-HDMI cable (a single cable, not an adaptor and cable).
    When I was running Snow Leopard, the monitor worked just fine. After upgrading to Lion, the second monitor just has a black screen, and quickly goes into power save mode.
    I have already tried resetting the NVRAM (as described here: http://support.apple.com/kb/HT1379) and resetting the SMC (as described here: http://support.apple.com/kb/HT3964).
    Has anyone seen this problem? Any other suggestions for solutions?

    same here, just performed the upgrade to Lion and my secondary Samsung screen (direct HDMI cable) do not work anymore (I have a mid 2011 iMac 21.5'').
    I have tried the tricks mentioned on the following discussion:
    No Signal on HDMI TV After Lion Upgrade
    ie open terminal
    cd /System/Library/Displays/Overrides/DisplayVendorID-410c/
    sudo mv DisplayProductID-0  DisplayProductID-0.old
    Reboot after entering the commands
    But it is not working, the developper clearly messed up the video output in Lion OS!!!
    Let me know if you have a solution, I am reduced  to single screen use in the meantime... and regret the upgrade...
    Thanks

  • Formula not working in Adobe FormsCentral

    I have a formula which I have embeded into my PDF Form using Adobe Acrobat. All is fine and dandy in Acrobat, but the formula does not work when it is imported and converted for FormsCentral, I have to manually calculate the formula into the field which completely throws a wrench into the automation process that I am trying to create. My job is to issue Certificates of Completion, the form I have created has fields where I can submit the name, address, and use a formula to calculate the overall GPA to see if the person qualifies.
    FormsCentral gives you the ability to export your collected responses into a spreadsheet for Excel. By submitting the address along with the name and qualifications, I am able to use this data to create and automate shipping labels for all qualified students using Excel and Word in an instant. Having to manually calculate this data can result in human error, such instances can occur if you're processing over a hundred certificates per quarter.
    My initial impress that I got from upgrading to the premium version of FormsCentral was that I would be able to collect the same data that I have setup in my PDF form using Acrobat, but that doesn't seem to be the case.
    Formulas are by far the most important feature to have in my opinion as they are used for automating a workflow and eliminating human error.

    OK, here's a custom calculation script you can use in the text field after you remove the export values from the dropdowns:
    // Custom calculation script for text field
    (function () {
        // Object to associate a letter grade to a numeric value
        var oGrades = {
            "A+": 4, "A": 4, "A-": 3.7,
            "B+": 3.3, "B": 3, "B-": 2.7,
            "C+": 2.3, "C": 2, "C-": 1.7,
            "D+": 1.3, "D": 1, "D-": 0.7,
            "F": 0
        // Get the field values from the dropdowns
        var v1 = getField("Crim_I_Grade").value;
        var v2 = getField("Crim_II_Grade").value;
        var v3 = getField("Sight_C_Grade").value;
        // Get the corresponding numeric values from the Grades object
        // Default to 0 if the letter grade isn't found in the object
        var v1a = oGrades[v1] || 0;
        var v2a = oGrades[v2] || 0;
        var v3a = oGrades[v3] || 0;
        // Calcualte and set this field's value, rounded to two decimals
        event.value = util.printf("%.2f", (v1a + v2a + v3a) / 3);
    This isn't necessarily the most efficient code, but I wanted to make it easy to follow. It rounds the result to two decimal places. Let me know if you have any questions about it.

  • Pages to Numbers formula not work

    I have a table prepared in Pages (on macbookpro), that i have cut and paste into Numbers using IOS iPhone. Formula will not work as the cells treat the numbers as text, and i need to type them all in manually (format will not work either as the cells revert to text).

    It will probably put it in the portal repository under the "new" provider. For example, if your page group that the navigation page is under is displayed as "My page group", under the "new" portlet provider you should see a "My Page Group" portlet folder.

  • BEX Formula not working

    Gurus,
    My formula in Bex is not giving me any results, here is what I defined
    Margin Price = Price 1 + price 2  - (price 3 * quantity_shipped)
    When I check the query for errors, it's saying Margin Price is not correctly defined. Can you please let me know how to define this correctly?
    I am able to display all pricing KF (Price 1, Price 2 and Price 3) columns correctly in the query but the formula is giving me an empty cell.
    Thanks,
    Chris
    Edited by: chris Kol on Dec 26, 2008 3:27 PM

    Hi Chris
    It seems to be your input keyfigures(price1,price2,price3) are coming with different dimensions or different currencys thats way it not working properly use nodim function.
    If thats not the case check weather your query properties are configured for -ve value are not logically it should display though its negative values but in some extreme cases there is possibility that the setting is made in such way that no negative value is displaying teh query out put level.
    Hope its clear a little..!
    Thanks
    (P159793)K M R
    **Assigning points is the only way of saying thanks in SDN***
    >
    Kris Kol wrote:
    > Gurus,
    >
    > My formula in Bex is not giving me any results, here is what I defined
    >
    > Margin Price = Price 1 + price 2  - (price 3 * quantity_shipped)
    >
    > When I check the query for errors, it's saying Margin Price is not correctly defined. Can you please let me know how to define this correctly?
    >
    > I am able to display all pricing KF (Price 1, Price 2 and Price 3) columns correctly in the query but the formula is giving me an empty cell.
    >
    > Thanks,
    > Chris
    >
    > Edited by: chris Kol on Dec 26, 2008 3:27 PM

  • Formula not working, Plz help

    Hi all i have one scenario for formula$
    I am calculatingYTD value in period dim and one more dime CATGORY and INDICATOR
    scenario is wen indicator member is ID3 we have to calculate ytd values and we have to displaythe values for ytd crossing(which is in cat dim)
    Structure$
    TIME
    2009
    YTD09
    CATOGORy
    ....Mtd
    ....;;YtD(formula)
    ......y_tech
    indicator
    Id12
    ....ID121
    ....ID123
    ..........1231
    ..........1232
    ID3
    ....ID31(+)
    ....ID123(/)(sheredmember)
    iam using formula
    iif([INDICATOR].currentmember=[ID-3],[Ytd09],[y_tech]) , its validating
    but its not working , I am new to mdx formulas , plz can any one help on this
    can any one give the link for mdx formulas syntax and sample formulas
    Thanks
    Edited by: user8815661 on 26 mars 2010 06:19
    Edited by: user8815661 on 26 mars 2010 06:33

    I am not sure what your complete formula looks like,
    But in your IIF = condition, use OR instead of commas - pretty basic, dont know for sure if it will work.
    post your formula if you need more help

  • Formula not working in conversion file

    Hi,
    I had given the formula to divide the values with 50. But its not working.
    *OPTIONS
    FORMAT = DELIMITED
    HEADER = YES
    DELIMITER = ;
    AMOUNTDECIMALPOINT = .
    SELECTION= 0FISCYEAR,2010;0LOC_CURRCY,INR;0FISCPER3,7;
    SKIPIF =
    VALIDATERECORDS=YES
    CREDITPOSITIVE=YES
    MAXREJECTCOUNT=
    ROUNDAMOUNT=
    CONVERTAMOUNTWDIM=P_ACCT
    *conversion file
    EXTERNAL     INTERNAL     FORMULA
    *     *     VALUE*50
    Anurodh
    Edited by: Anurodh Jindal on Aug 27, 2010 12:29 PM

    FORMAT = DELIMITED
    HEADER = YES
    DELIMITER = ;
    AMOUNTDECIMALPOINT = .
    SELECTION= 0FISCYEAR,2010;0LOC_CURRCY,INR;0FISCPER3,7;
    SKIPIF =
    VALIDATERECORDS=YES
    CREDITPOSITIVE=NO
    MAXREJECTCOUNT=
    ROUNDAMOUNT=
    CONVERTAMOUNTWDIM=
    *MAPPING
    Category = *NEWCOL(ACTUAL)
    DOC_CURR = *NEWCOL(INR)
    Entity = 0COMP_CODE
    IntCo = *NEWCOL(NONE)
    P_ACCT = IF(0FUNC_AREA=Str(P) then Str(EP-)+col(22,1:6);0FUNC_AREA=*Str(S) then Str(ES-)+col  (22,1:6);0FUNC_AREA=*Str(A) then Str(EA-)+col(22,1:6);*col(22,1:6))
    P_DataSrc = *NEWCOL(INPUT)
    RptCurrency =*NEWCOL(IGAAP)
    Time = 0FISCYEAR*str(.)0FISCPER3
    SIGNEDDATA = 0DEB_CRE_LC
    Planning_Entity = *NEWCOL(P_CORP)
    P_Activity = *NEWCOL(AMOUNT)
    *CONVERSION
    Time = Time.xls
    P_ACCT = P_ACCT_Anurodh_Jindal.xls
    Now i am getting 0DEB_CRE_LC from BI and i need to divide it by 50.

  • My ipod nano 6th generation got dropped in water for 3 seconds and now will not work

    Any suggestions, my ipod 6th generation got dropped in the pool and immediately got pulled out, it workled again then but now wont turn on.

              See this article! (i'v heard this actually works [sometimes]). You might also try rapping your ipod in a towel and letting it set in the sun for a day! However, if these do not work you may need to take it to your local apple store for repair!

  • Part of Keypad Not Working

    Hi everyone,
    I have an LG VX5400 phone, and have been having trouble with the keypad for the past week or so.  Specifically, the middle column of numbers (2, 5, 8, and 0) does not work.  I can't press any of these numbers, which makes texting very difficult.  In addition, I also can't press the Speaker Phone button, the Send button, or the "up" button on the left side of the phone (which increases master volume).  The rest of the keys work as normal.  Any suggestions?
    Thanks!
    -bills

    How long have you had the Device ?  If you've had it for a long time 6 month or a year it might be the contact pads on the underside of your key pad is worn down or Worn out.. Is the phone around allot of Dust Like farming, Grain Elevator, Etc. or are you were there is allot of moisture any one of those elements can cause shortness of Life in the Keypads..But if your not around any of that as i mentioned it might just physical wear..
    I would take it too the Local come store and have a Rep or Manager take a look at it and if they can't get it to work as mentioned they'll possibly send you home with a new one or a Refurbished one... or have one sent to your residence.. 

Maybe you are looking for

  • Main problem after 10.5.8 update install

    The problem I have is after updating with 10.5.8 combo I now have to unplug my Mac and wait about 10 minuets before I can reinsert the mains plug then restart as normal. If I use restart under the apple or any other way that uses restart the Mac will

  • Dreamweaver MX 6.1 Closes When Click on Help or Commands in Vista

    Just got a new machine - running Vista with Dreamweaver MX 6.1. When I click on the Toolbar - on Commands or Help - it closes the program. I just installed the updater to make it 6.1 - but it didn't help. Any ideas? Jess

  • WLS Cluster with Message Driven Beans and MQSeries on more than one Host

              With the Examples of http://developer.bea.com/jmsproviders.jsp and http://developer.bea.com/jmsmdb.jsp           a MDB can be           configured to work with MQSeries with one WLS Server. This works only, if a Queuemanager           is st

  • Is it Possible Scenario in workflow...

    Hi All, I have one scenario related to MM MIGO for Finance persons. 1. One report created for 103 (movement by where house) and one tcode for this. 2. This report has selection screen for PO date and MIR date. 3. I am calling this report from workflo

  • Importing hierarchial data

    Hi, I have an XML file that contains the Merchandise hierarchial data that got extracted from and R/3 system(SAP-Retail). I am trying to import this data in the Import Manager, however the import status is still diabled. I am using the maps provided