Displaying "N/A" in report fields where Number data is not valid using a formatting formula

Post Author: Horizon57
CA Forum: General
I have many reports which are populated by "Number" data. However, there are certain charts and tables where the number data is not appropriate and the summation of such data does not add value to the report. In these instances I would like to display "N/A", however the formula I am using keeps giving me an error that I need to use a "Number" data type. Please note this is a formatting formula.
Formatting Formula
DO{TREND.EPTP1} = 'N/A' AND{TREND.EPTP2} = 'N/A' AND{@Trend %}    = 'N/A'  WHILE {TREND.POS2} = 'TOTAL';
Can anyone assist me with displaying "N/A"?

Post Author: V361
CA Forum: General
Try this
DOtotext ( {TREND.EPTP1} ) = 'N/A' ANDtotext ( {TREND.EPTP2} ) = 'N/A' ANDtotext ( {@Trend %} )    = 'N/A'  WHILE {TREND.POS2} = 'TOTAL'; 

Similar Messages

  • Display error messages in Visual Composer if Input Data is not valid

    Hi,
    We developed a small iView with a single input field FO (Factory Order).
    The output is a table with some fields corresponding to the given FO.
    My requirement is if the given FO (Factory Order) has no data then the table should not be displayed, instead a message should be displayed saying
    'No Data is found' and stop the program.
    Please reply soon if anyone has got a solution.
    Thanks,
    Shashidhar

    Hi
    You can use <b>guard condition</b> of the event to check whether input field(FO) has data or not. When the input field is empty , you can open a <b>pop-up iView</b> displaying "No Data is found" and when the input field has data , you can execute your service to produce the table output.
    If, you have any more doubts, revert back
    Thanks & Regards
    Harsimran

  • I am installing CS6, for the first time, on a Mac, from a CD.  I have a valid serial number that I just obtained.  When I enter the serial number, it is not validated and I cannot continue.

    I am installing CS6, for the first time, on a Mac, from a CD.  I have a valid serial number that I just obtained.  When I enter the serial number, it is not validated and I cannot continue.

    Error "The serial number is not valid for this product" | Creative Suite

  • Hello , I have a license CS6 4 posts (3 installed on PC) I just got a mac so I wanted to install the latest license it but when I want to register on the site adobe it tells me that " the number provided is not valid "can help me thank you

    Hello , I have a license CS6 4 posts (3 installed on PC) I just got a mac so I wanted to install the latest license it but when I want to register on the site adobe it tells me that " the number provided is not valid "can help me thank you

    Contact support by web chat.
    Mylenium

  • I have deactivated my CS6 on my old computer and now when I have downloaded a trial version and enter the serial number it says not valid? I have only used my license on one computer before? Does anyone know the problem?

    I have deactivated my CS6 on my old computer and now when I have downloaded a trial version and enter the serial number it says not valid? I have only used my license on one computer before? Does anyone know the problem?

    Chat Now button near the bottom for Activation and Deactivation problems may help
    http://helpx.adobe.com/x-productkb/policy-pricing/activation-deactivation-products.html
    OR
    Asked to sign in after paying may help
    -http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html
    or
    http://helpx.adobe.com/creative-cloud/kb/license-this-software.html
    Membership and Payments http://helpx.adobe.com/x-productkb/policy-pricing/membership-subscription-troubleshooting- creative-cloud.html

  • Alter reports field color and date formatting

    Hello,
    I have a report with an in-line case statement which alters a field color based on the date value. I have the column's format mask set to 'MM/DD/YY'. I've tried several different ways to format the date field using the column attributes as well as within the select statement itself. Either way seems to break the sorting on the field. HTMLDB no longer consideres this field to be a date field and the sorting does not work.
    Any suggestions?
    Thanks in advance, Todd
    Here is the code I am currently using:
    SELECT status, CASE
    WHEN target_date < Trunc(sysdate) THEN
    '<span style="color:Red;">' || target_date || '</span>'
    WHEN target_date >= trunc(sysdate) THEN
    '<span style="color:Green;">' || target_date || '</span>'
    END CASE
    FROM projects

    Todd,
    Once you add some HTML tags to you columns values, they are no longer date or number columns but string columns. So the sorting doesn’t work properly anymore, i.e. sort by number, sort by date. You may find Tyler’s response in the following thread useful though:
    Dynamic Selection of Report Column Format
    Hope this helps,
    Marc

  • Newly added field in the data Source not getting populated

    Hello All,
    We have added few fields in the Data Source. The Data Source is based on the InfoSet. We have included the field in the Infoset and have updated the code to fetch the value for the newly added fields.
    When we perform the test extraction for this Data Source in RSA3, the newly added fields are not getting populdated with the value. In the system generated query's selection list, the newly added fields are not selected.
    Please let mw know how to get the newly added field selected in the system generated query of the infoset.
    Regards,
    -Purnima

    Hi,
    As you said you have added the filed in Info Set. Have you included the same in data source? try if not.
    If you are trying to create a query in source system to check the data. I guess in R/3 (ECC) then you have to include the new field in slection critera (ther is an option available on top menu).
    I would suggest before creating any query go to RSO2 select the data source. Display the field structure and check if the filed is there or not. You maysee Infoset level data directly by data display from top menu. Try that optionas well to check.
    I hope it will help.
    THanks,
    S

  • Report parameter startdate has a defaultvalue or a valid value that depends on the report parameter startdate forward dependencies are not valid

    Hi,
    Am trying to develop a report the parameter has an issue, it gives me an error.
    There are 2 parameter (1st is Date range like start and end date and 2nd is Loan number)
    When ever I select date range the Loan number parameter should go blank. If I input a loan number then date range should go blank. 
    What should I do. Please help
    ERROR --report parameter startdate has a defaultvalue or a valid value that depends on the report parameter startdate forward dependencies are not valid

    Hi Kay_MD,
    If there are only two parameters, we can use first parameter charge the second one, but the second one cannot charge the first one in turn. Because parameter forward dependencies are not valid. To achieve your requirement, we can create another parameter
    to control Date_range and Loan_number parameters. For more details, please see:
    Add a parameter named ReportParameter1 with two available values: Date_range and Loan_number.
    Use the following expression as the default value in Date_range parameter:
    =iif(Parameters!ReportParameter.Value="Date_range",1,"") (1 means a useless value)
    Use the following expression as the default value in Loan_number parameter:
    =iif(Parameters!ReportParameter.Value="Loan_number",1,"") (1 means a useless value)
    Please note that the Date_range and Loan_number parameters should enable Allow blank value (“”), and the blank values should also be contained in available values.
    If there are any other questions, please feel free to let me know.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Data is not converting in XML format in output while download in report

    Hi All,     While downloading the report in XML format value '&' is not changing its XML format '&amp', but showing in debug mode and sam thing while download its not showing in output. showing in debug like; MS NA - DCS Tooling & Automation but in output showing the data like:  MS NA - DCS Tooling & Automation because of this getting issue. Please help me out . Thanks and Regards Sankil

    In that case, it is correct.
    Try replacing & with &amp; before downloading xml in case you want & to appear as &amp; in web browser view.

  • Update the "remark" field in general data of a BP (using IDOC in LSMW)

    Hi,
    I have to create and udpate BP with comments in the general data. I have no problem to manage this field in creation mode. I only use the segment "E101BAPIAD_REM" from the "CRMXIF_PARTNER_SAVE_M02" Idoc basic type. I fill the following fields: "LANGU, LANGU_ISO, ADR_NOTES".
    However in update mode I don't success to update the value for the field "REMARK". I use the second segment "E101BAPIAD_REX" and i fill only field "ADR_NOTES" with value "X" and "UPDATEFLAG" with value "U".
    I tried several value and several cases but i failed each time. If anybody has already managed this data with IDOC I would be very interesting...
    regards,
    Fabrice Mouyebe.

    Hi Thirumala,
    thank you for your answer but you speak about the field "AddressGUID" of E101BUS_EI_ADDRESSREMARK but I haven't this field at this level. This field is linked to the segment "E101BUS_EI_BUPA_ADDRESS_KEY", isnt'it ?
    Effectively i have certainly a problem with the Address GUID. I have to test it because it doesn't work with only UPDATEFLAG at 'X' and CURRENT_TASK too.
    Thanks,
    fabrice.

  • Reporting Service Integration mode and Key not valid for use in specified state

    I had to uninstall SharePoint Foundation 2013 and reinstall it.
    What I have done:
    I uninstalled SharePoint and after that I removed all databases.
    I reinstalled SharePoint Foundation 2013 and it completed without errors.
    Everything else is working, except SSRS in Sharepoint Integrated Mode.
    If I check Central Administration - Manage services on server, I can found out that SQL Server Reporting Service Service is
    "Started". But if I try to create new service application (SQL Server Reporting Services Service Application), it gives me an error message:
    "Key not valid for use in specified state. (Exception from HRESULT: 0x8009000B)"
    I uninstalled SSRS in Sharepoint Integrated Mode and I reinstalled it but problems exists.
    It seems that "Encryption Keys" cause this problem.
    https://support.microsoft.com/kb/955757
    https://msdn.microsoft.com/en-us/library/ms156010%28v=sql.110%29.aspx
    I tried to Re-create Encryption Keys and Delete keys, but its not working either. It gives me only error message that:
    "Unable to locate the Reporting Server Windows service for instance MSSQLSERVER."
    I don't have any reporting server databases, because I removed all
    databases when I uninstalled SharePoint. Also I don't have Encryption
    Keys backups.
    I have found several similar question but no answer, example here:
    https://social.technet.microsoft.com/Forums/ie/en-US/df02dc05-5ce8-499d-9ba3-ab392a5fc3af/sharepoint-2013-ssrs-application-error-key-not-valid-for-use-in-specified-state-exception?forum=sharepointdevelopment
    Any ideas how I can fix this problem?

    Hi,
    From the Reporting Server Configuration Manager you have to restore the encryption key.
    Please try to delete databases(reportserver & reportservertempdb) and delete the reportserver and reports site on IIS. Then you have to start over the configuration again.
    If the issue still exists, Please check ULS log to see if anything unexpected occurred.
    For SharePoint 2013, by default, ULS log locates in
    "C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS"
    More information about SQL Reporting services Installation with SharePoint 2013 for your reference:
    http://expertsharepoint.blogspot.de/2014/03/sql-reporting-services-installation.html
    Best Regards,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Crystal Reports 2011 Installation Issue, key code not valid

    Folks,
    We have just purchased two licenses for the Crystal 2011 upgrade from DigitalRiver.  The installation completes successfully, using one of the two "digital rights" keys that were provided in the confirmation email from DigitalRiver.
    Upon launching Crystal Reports 2011 for the first time, though, we are being prompted with a License Manager window asking to add a key code for Crystal Reports.  We enter the "digital rights" key provided by DigitalRiver, the same one used during the installation [copy and pasted from the email for accuracy] and receive the error message "The key code you just typed is not valid, please try again."
    Canceling this window or clicking Ok simply closes the Crystal Reports application.
    Any assistance in how to get the application running would be helpful.
    Tested Environments:
    Windows 7 Professional SP1, 32bit
    Visual Studio 2010 w/ CR for Visual Studio 2010 installed
    Windows Server 2008 R2, 64bit
    Thanks,
    Jeff

    Follow-up:
    We went through several iterations of installation and finally decided to mix things up to see if we could get a different response from the software.  The items that we performed differently were as follows:
    1.  Ran the setup.exe as administrator [even though we have full admin access as the logged in user]
    2.  Hand typed the digital rights key rather than cut/paste from the email
    3.  Performed a custom installation rather than the default and de-selected all of the SAP and other software integration options.
    The software ran fine without prompting with the License Manager.
    My guess is that it was the removal of the integration pieces that allowed the application to run.  We'll perform our next install with just that change and see if it is the culprit.
    Jeff

  • Photoshop CS6 windows won't install with my serial number given says not valid

    I bought my extended photoshop cS6 in 2012 and installed on Mac computer now I'm trying to install on my new dell laptop with the windows disc and the serial number i have in my account under product is not valid?

    You cannot use a Mac serial on Windows. Changing platform can be an expensive task. However, since CS6 is still current Adobe MIGHT convert the license for you if you contact them.

  • Serial number from Canon not valid.

    Hi - I have just purchased a Canon 6D in the UK, and it came with a Lightroom 5 license and CD.
    Because my laptop doesn't have a disk drive, I have installed Lightroom 5 via the Creative Cloud installer - however when entering the license I've been provided, I am told the serial number is not valid.
    What can I do to get this working?
    Thanks
    Josh

    The Creative Cloud installer may be installing the CC version not the standalone version, so download LR 5.6 from the Adobe Updates page and it should work with your serial number, unless that CD has a special version on it, in which case you’ll need to copy the contents of the CD to a flash drive using another computer and install from the flash drive:
    http://www.adobe.com/downloads/updates

  • Custom fields in additional data B not displaying - Sales Order

    Hi gurus,
    I added some custom fields to the addtional data B tabstrip in sales order screen, but they didn't display. This is in the client's system. BUT in our own system it works perfectly. The screen has been activated.
    Maybe it's because of the version difference?
    Anyone experienced this before?
    Any suggestion will be great.
    Thanks

    Resolved by myself.
    For those who would have the same question, please refer to SAP note 386694.

Maybe you are looking for

  • How to authenticate user in Active Directory for an Oracle report

    Hey there, We have users of 1 report all over the country. Currently, when using the report, the user chooses a location as a parameter, then runs the report. The problem is we don't want the user to be able to see data from other locations, only the

  • Add entries to a Jar-File

    I try to add an entry to a jar File, by using the following code: String jarFile = new String("/home/xyz/test.jar"); JarOutputStream jos = new JarOutputStream (new FileOutputStream(jarFile)); /* this one doesn't work either -> * the jar file is damag

  • How to create and configure proxies in ADF mobile using OWSM client agent?

    Hi Can anyone please tell me how to create and configure proxies in ADF mobile application using Oracle Web Services Manager (OWSM) Lite Mobile ADF Application Agent. I read it in mobile document that, For secured web services, the user credentials a

  • Data Finder queries can only be done on properties?

    Is it not possible to search for specific channel values to find data sets that I want to load? I can't seem to formulate a query to do it. It seems like only properties can be searched. For ex, I have data logs of software program crashes, which sto

  • Sudden Crashing Issue

    HP Pavilion p6380a Home PC Windows 7 64-bit Have had this computer for about 2 years, and have had many issues since day one. First sound card issues were the problem and if i remember correctly the tower had to be replaced. Since then we have someho