Alerts not working when formula is in the cell

I am having a problem where my alerts are not working in the preview mode.  They work fine when I hard code the alert range.  But I need the alert to change under differnt conditions and I am using an IF statement
the formula is simple
=IF('TXF Inputs'!D27=3, C34/2, C34)
output is either 0.375 or 0.375/2 = 0.1875
if i hardcode the cell with either of these values the alert works, but it does not work with the formula.  The confusing part is that I have other alerts that have IF statements in them and they all work.
They also work fine in the main screen, ie it shows yellow if my default values =0.1875, but then when I preview or publish they don't work
bw

Can u give us the details like which component you are using for alerts.

Similar Messages

  • My iphone text tone is not working when I plug in the earphone.

    Hi,
    My iphone text tone is not working when I plug in the earphone.
    My earphone is always plug into the iphone as I use it to answer calls. I notice that iphone does not alert me (sound) when there is a new messages. Instead the text sound is transfer to the earphone speaker.
    As the earphone is plug into the iphone and I am not putting it on always, I need it to still hear the text tone whenever I received new messages.
    Anyone pls help.. the problem still there even I updated..

    goh steven wrote:
    hi wjosten
    I don't put the iphone in my front pocket. I put in my bag pack so vibration is not useful to me. Pls help
    The iPhone is working exactly as it is designed.
    Your options are:
    1) Unplug the headset.
    2) Leave the headset plugged in and the earpiece in your ear at all times.
    3) Turn on vibrate and put the phone in your pocket.
    4) Leave feedback for Apple and hope they deem it worthy of their time to fix.
    This is a user to user forum, these are the only solutions we can offer you here.

  • I have i phone 4s i there is problem of wifi my wifi is not working when i go to the wifi there is no working on off when i update it as a 6.1 ios on that time again it was good but after 2 days again the same problem i am too tired

    I have i phone 4s i there is problem of wifi my wifi is not working when i go to the wifi there is no working on off when i update it as a 6.1 ios on that time again it was good but after 2 days again the same problem i am too tired and i also reset network setting but nothing gonna be worked

    Sounds like the device was dropped at some point and damaged as a result.
    Take it to Apple for evaluation and a replacement.

  • The touch screen is not working when I am in the Music app of my iPod Touch.  How do I get it to begin working?  It just stopped today.

    The touch screen is not working when I am in the Music app of my iPod Touch.  How do I get it to begin working?  It just stopped today.
    Does anyone know what I can do?  I am unable to switch screens, and I can not see the track that is playing.  The only was I can switch between songs is to use the controls on my headphones.

    Try the stamdard fixes to rule out a software problem:
    - Reset. Nothing will be lost
    Reset iPod touch:  Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup
    - Restore to factory defaults/new iPod.

  • Page with PartialTriggers is not working when it loads for the first time

    Hi All,
    I am experiencing unexpected behavior when using partial triggers and this recurres every time the page loads and the second time it works fine.
    Here is the requirement, The page has a check box, when checked, two text boxes should be disabled. When unchecked the two fields should be enabled.
    (The fields are Start Date Time and End Date Time in the code below). I am also handiling the Date Validations on value change listener of Start Date time and have no issues on that.
    When I try to enter the dates on page load (The check box - "Process Full Indicator" is not selected), I enter the required fields (PEID, Dates and check the Process IAF and Process SMS check boxes and click on the ProcessRFI Button, the date fields are emptied and nothing happens. When i redo the same thing the second time, it works.
    The button invokes a BEPL process.
    One of the links suggested that I use the partialTrigger tag in the parent layout, I used in the panelFormLayout and it sill did not reflect.
    I am facing the same issue in an other page that is reteriving data from a DB Table. As I notice, both the pages are invoking dataControlls. Not too sure if it is related.
    Kindly help.
    <af:panelFormLayout id="pfl1"
    inlineStyle="font-weight:bold; height:181px;"
    >
    <af:inputText value="#{bindings.PEID.inputValue}"
    label="PEID"
    required="#{bindings.PEID.hints.mandatory}"
    columns="#{bindings.PEID.hints.displayWidth}"
    maximumLength="#{bindings.PEID.hints.precision}"
    shortDesc="#{bindings.PEID.hints.tooltip}" id="it1"
    inlineStyle="font-weight:bold;">
    <f:validator binding="#{bindings.PEID.validator}"/>
    </af:inputText>
    <!--af:inputText value="#{bindings.EnrichmentBatchID.inputValue}"
    label="Enrichment Batch ID"
    required="#{bindings.EnrichmentBatchID.hints.mandatory}"
    columns="#{bindings.EnrichmentBatchID.hints.displayWidth}"
    maximumLength="#{bindings.EnrichmentBatchID.hints.precision}"
    shortDesc="#{bindings.EnrichmentBatchID.hints.tooltip}"
    id="it3">
    <f:validator binding="#{bindings.EnrichmentBatchID.validator}"/>
    </af:inputText-->
    <af:inputDate value="#{bindings.StartDateTime.inputValue}"
    label="Start Date Time"
    shortDesc="#{bindings.StartDateTime.hints.tooltip}"
    id="id1" inlineStyle="font-weight:bold;"
    binding="#{backing_ProcessRFI.input_startDate}"
    valueChangeListener="#{backing_ProcessRFI.assignFromDateValue}"
    autoSubmit="true"
    required="true" immediate="true">
    <f:validator binding="#{bindings.StartDateTime.validator}"/>
    <af:convertDateTime pattern="#{bindings.StartDateTime.format}" type="both"/>
    </af:inputDate>
    <af:inputDate value="#{bindings.EndDateTime.inputValue}"
    label="End Date Time"
    shortDesc="#{bindings.EndDateTime.hints.tooltip}"
    id="id2" inlineStyle="font-weight:bold;"
    binding="#{backing_ProcessRFI.input_endDate}"
    partialTriggers="id1"
    required="true"
    valueChangeListener="#{backing_ProcessRFI.checkNullStartDateValue}"
    autoSubmit="true" immediate="true">
    <af:validateDateTimeRange minimum="#{backing_ProcessRFI.dtFromDate}"
    hintMinimum="End date should be greater than the Start Date"
    />
    <f:validator binding="#{bindings.EndDateTime.validator}"/>
    <af:convertDateTime pattern="#{bindings.EndDateTime.format}" type="both"/>
    </af:inputDate>
    <af:selectBooleanCheckbox value="#{bindings.ProcessIAFIndicator.inputValue}"
    label="Process IAF"
    required="#{bindings.ProcessIAFIndicator.hints.mandatory}"
    shortDesc="#{bindings.ProcessIAFIndicator.hints.tooltip}"
    id="it2"
    inlineStyle="font-weight:bold;">
    <f:validator binding="#{bindings.ProcessIAFIndicator.validator}"/>
    </af:selectBooleanCheckbox>
    <af:selectBooleanCheckbox value="#{bindings.ProcessSMSIndicator.inputValue}"
    label="Process SMS"
    required="#{bindings.ProcessSMSIndicator.hints.mandatory}"
    shortDesc="#{bindings.ProcessSMSIndicator.hints.tooltip}"
    id="it5"
    inlineStyle="font-weight:bold;">
    <f:validator binding="#{bindings.ProcessSMSIndicator.validator}"/>
    </af:selectBooleanCheckbox>
    <af:selectBooleanCheckbox value="#{bindings.ProcessFullIndicator.inputValue}"
    label="Process Full Indicator"
    required="#{bindings.ProcessFullIndicator.hints.mandatory}"
    shortDesc="#{bindings.ProcessFullIndicator.hints.tooltip}"
    id="it4"
    inlineStyle="font-weight:bold;"
    binding="#{backing_ProcessRFI.processFullIndicator}"
    valueChangeListener="#{backing_ProcessRFI.handleFullIndicator}"
    autoSubmit="true">
    <f:validator binding="#{bindings.ProcessFullIndicator.validator}"/>
    </af:selectBooleanCheckbox>
    <af:panelStretchLayout id="psl1" inlineStyle="height:40px;">
    <f:facet name="center">
    <af:panelGroupLayout layout="horizontal"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    id="pgl2">
    <af:commandButton actionListener="#{bindings.ProcessRFI.execute}"
    text="Process RFI"
    disabled="#{!bindings.ProcessRFI.enabled}"
    id="cb2"
    attributeChangeListener="#{ProcessRFI.processResult}"/>
    <af:resetButton text="Clear" id="rb1"/>
    <f:facet name="separator">
    <af:spacer width="10" height="10" id="s2"/>
    </f:facet>
    </af:panelGroupLayout>
    </f:facet>
    </af:panelStretchLayout>
    </af:panelFormLayout>

    Hi John,
    My page is not a part of a task flow. The whole app is an Admin app comprising of multiple individual pages navigated using Menu.
    I have tried to run this page individually on my local machine as well as when deployed on the WLS server. The behavior is the same.
    Kindly advice,
    Thanks,
    Ram

  • I have an iPhone 4S I have done the recent update 6.1 and now my App Store is not working when I go into the feature tab I get an error " too many HTTP redirects" how do I fix this ? The other tabs are working and it is working on my iPad also

    I am having a problem getting into the App Store on my iPhone since the recent update, I have a 4s and it appears the feature tab is not working. When I try to go into the feature tab in the App Store I get a message "too many HTTP redirects" ?... Does anyone now hoe to fix this issue, the other tabs are working okay and everything is working on my iPad ?

    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    Additional things to try.
    Try this first. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    Change the channel on your wireless router (Auto is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    Another thing to try - Go into your router security settings and change from WEP to WPA with AES.
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • Why does my printer not work when i plug in the internet? (ethernet)

    hey guys,
    i have the Mac connected to a large digital printer via the ethernet connection. works fine, no problems untill i plug in the internet. I get an error message in my software and can't print any jobs, but the internet works fine.
    I have a feeling that its a network problem, but don't want to mess around too much with the settings.
    This is a company internet connection.
    if anyone could advise of the possible network settings, I would be very greatful.
    thanks again.

    Your Mac sends traffic to the interface at the top of the list in
    System Preferences > Network
    When you plug in the second Ethernet, that Interface jumps to the top of the list and all traffic goes there.
    The solution is to cable that Printer to your Router, not to your Mac.
    Alternatively, you could add a small Switch and connect your Mac and the printer to it.
    If you really want to you can use Internet Sharing to add the Ethernet port going to the Printer to the Network connacted to the Internet.

  • Captivate 5.5 project -links are not working when i publish to the IE server

    I was wondering if someone had a solution to my Captivate 5.5 project with external links. 
    Here is my problem:
    I have a page that has an external link that opens another window. 
    For some reason the window will open in preview.  However, when I publish to the IE browser it does not work. 
    Does someone have a solution to this problem?  I saw some verbiage that stated adjusting something swf file.  I don't quite understand were to change this file.  Is it in Captivate?
    Any information you have is greatly appreciated.
    Thank you!
    Kat

    Google for information about Flash Global Security.
    It looks like you need to trust the publish folder location as a trusted location in your Flash Global Security settings.

  • My new ipod nano does not  work when you turn off the computer

    I bought a new iPod but I have a problem when you turn off the computer does not work. Shows that the battery is full and it was lightning. Ipod only works while connected to your computer. What should I do

    Hello pepi95,
    And welcome to Apple Discussions!
    If you just bought the nano, why not bring it back for a replacement or your money back? It's definitely a defective iPod. Not much else for options here. Sorry.
    B-rock

  • Why viber is not working when i am closing the app?

    in my iphone 4 mobile i am facing a problem. when i am closing my apps i am not getting any calls. when i am opening the apps then i am getting calls, sms and miscalls. I am connected with wifi. in this same connection others users are getting calls when they are closing the app. what is my problem? i have uninstalled the app and again i have installed it. but problem remains same. Anyone is not getting me!!!! Please reply as soon as possible.

    Try the stamdard fixes to rule out a software problem:
    - Reset. Nothing will be lost
    Reset iPod touch:  Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup
    - Restore to factory defaults/new iPod.

  • WHEN i UPDATED TO 4, THE GOOGLE DROPDOWN DOES NOT WORK WHEN I CLICK ON THE ITEM I WANT TO GO TO LIKE IT DID WITH THE OLD VERSION.

    I INSTALLED 4 AND NOW WHEN I TYPE IN THE GOOGLE SEARCH AND AN ITEM IN THE DROP DOWN IS CHOSEN, IT DOES NOT GO TO THAT LINK. THE FEW LETTERS I HAVE TYPED IS ALL THAT SHOWS UP IN THE BOX AFTER I CLICK THE ITEM IN THE DROP DOWN.

    Can I change back to the older version of Firefox

  • Alerts not working when "reply" is used

    When I get a reply to a sms text, there is no alert, only the led flashes.  I do not have alerts turned off.  They work fine, when the message originates from the sender.

    Can u give us the details like which component you are using for alerts.

  • Save as method not working when variable is in the name...

    Refer to code below.  "currentWord" contains the string "classthatisverylong". The first "filename" works great.  The second one does not.  How can I get around this?  Is there an easy way? Or even a hard way?  Im open to anything!
    'fileName = "T:\Text Editing and Proofreading\Testing folder\classthatisverylong"
    fileName = "T:\Text Editing and Proofreading\Testing folder\" & currentWord
    docref.SaveAs fileName
    docref.Close

    I convert everything to forward slashes before scripting paths in Adobe. Also, instead of using a path variable I believe you should use a File object like in this example:
        var intResult = 1;
        var checkPath = new Folder(docSetup.savePath);
        if(!checkPath.exists)
            checkPath.create();
        if(!checkPath.exists)
            alert('Unable to save at location ' + docSetup.savePath);
        else
            try
                var fileName = docSetup.savePath + docSetup.docTitle;
                var filePath = new File(fileName);
                var saveOpt = new IllustratorSaveOptions();
                saveOpt.compressed = true;
                saveOpt.pdfCompatible = true;
                doc.saveAs(filePath,saveOpt);
                intResult = 0;
            catch(e)
                intResult = 2;
    So, please try replacing backslashes with forward slashes and using the File object instead of a string value. I also separate the file name from the directory so I can create the directory if necessary.

  • Why does my hp deskjet 3050 not work when i plug in the usb?

    I have installed the 10.7 update as well and when i add the printer it says that the software is not yet available.

    Update to the latest drivers:
    http://support.apple.com/kb/DL907

  • Offline policy not working when computer disconnected to the network

    Hi,
    our customer is now using Rights Managment ES Update 1, Service Pack 2.
    There is a policy definied with an  offline lease period = 15 days.
    The document publisher has the offline option enabled.
    If a PDF document is protected by this policy, the document can be opened as long as the computer is connected to the network.
    If the computer is disconnected the document cannot be opened anymore.
    Adobe Reader comes up with the error information " This computer must be connected to the network in order to open this document".
    (==> the HTTPS connection is secure, the certificate is valid and installed and the base URL is set)
    It is strange because the solution has been running since one year with LC ES 8.01. Then we upgraded to LC ES 8.21 SP2. The documents which are encrypted by the same policy can be opened online but not offline.
    The policy settings are attached to this post (offline_policy_settintgs.pdf).
    Thank you in advance.
    Regards,
    Daniel

    Are the end users still using the same version of Reader or Acrobat to open the PDF that they were using prior to the upgrade to ES Update 1 SP2?
    Have the client systems been synchronized with the RM Server to retrieve the "Principal" key that is required to open the PDF offline (although, if they can open the document online, then the synchronization should be occurring in the background).
    Try forcing a synchronization, from Acrobat select Advanced > Security > Adobe LiveCycle Rights Management > Synchronize for Offline.  If you are using Reader, select Document > Security > Adobe LiveCycle Rights Management > Synchronize for Offline
    Regards
    Steve

Maybe you are looking for

  • How to force the "Bluetooth Communicat​ions Port" to be one of COM1 to COM8 ports?

    Dear Lenovo Community, Happy Holidays to you all and wish you a great happy new year. Recently purchased a Bluetooth OBDII device and have difficulty making it to work with its provided software on my T61 (running original XP Home). My short story an

  • Ipod Nano won't charge or show in itunes

    I bought a used nano, either 1st or 2nd generation, not sure.  The usb charger that I use for iphone and ipod classic seems to work; it provides power to the nano.  But the nano will not charge (batter dead?) and it does not show in itunes.  I've gon

  • Automatically loading a new font in a flash

    I was thinking of making my own font for my flash website, but the problem is , the users will not have the font, therefore it will only show the default font for them. There is a flashchat program (web driven) that has new fonts on it, that when cho

  • How can I get my wifes account transferred over to my computer?

    My wifes computer crashed. I want to be able to sign into itunes and get her songs downloaded and use her ipod on my account? Not having much luck! Thanks for any help!

  • Lenovo Flex 2 14: How to remove the compartment cover?

    I've got the new Lenovo Flex 2 14 with a 500 gb HHD. Now I want to upgrade to a ssd. The problem is that the hardware maintenance manual does not specify how to remove the compartment cover in case of the flex 2 14, which has no optical drive like th