Entering a Not To Exceed Validation Script

I am looking for a validation script that will not allow a user to enter an amount that exceeds an amount they previously entered in another form box.  For example, if the entered a value of 25000 in a cell named 'SchValue01', they could not enter 25001 in the subsequent cell.  I would need them to be able to enter an amount equal to the first though.  Can anyone advise me?  Thanks.

George, never mind.  I found a discussion where you helped someone with the same issue last March.  The solution worked perfectly!  Thanks!
John O. Ross, Jr.
President
DooleyMack Constructors of South Carolina, LLC
1114 Morrison Drive
Charleston, SC 29403
843-762-6690 (Office)
843-762-6691 (Fax)
843-408-8587 (Mobile)
www.dooleymack.com <http://www.dooleymack.com/> 
The information contained in this e-mail message and any attachments is confidential and privileged information intended only for the use of individuals or entities named above.If the reader of this message is not the intended recipient you are hereby notified that any dissemination, distribution or copying of this communication is strictly prohibited. If you have received this communication in error, please notify us immediately by e-mail at the originating address.

Similar Messages

  • Validation Script in Site studio

    Hi,
    I have created the Custom element form for date, I need to validate the data entered in contributor mode via Validation Script.
    I have created the Validation Script but I'm not able to read the parameter i.e. date.
    Returning true or false from the validation script is handling the validation. Retuning "false" shows one pop up .. that is ok. but how can we put user defined message in that pop up.
    So I have two queries:
    1. Reading the parameter in validation script.
    2. Putting user defined message in the pop up.
    Thanks in advance,
    MAK

    Sorry I don't have an answer for you, but I wanted to say that we have had problems with Design mode in general and don't use it anymore. Switching between Source and Design has cause multiple errors in our Site Studio template. We do all of our Designer editing in Source mode. Any actual design work is done in an external editor and the HTML source is then brought over into Site Studio in Source mode.
    I was disappointed when 10gR4 came out and Oracle said they did no significant changes (improvements) to Site Studio Designer application.

  • I am trying  to install CS3 on Windows 8 and keep getting a message saying "the serial number I entered is not valid please enter it again" Does anyone know how to install successfully on Windows 8?

    I am trying  to install CS3 on Windows 8 and keep getting a message saying "the serial number I entered is not valid please enter it again" Does anyone know how to install successfully on Windows 8?

    CS3 is unsupported under Windows 8. That said, you'll need to contact Adobe
    directly for serial number issues.

  • I got an itunes giftcard for my birthday and when i tried to add it on my balance on my ipod touch it says the code you entered is not  recognized as a valid code. but i just got this card brand new for my birthday.

    i got an itunes giftcard for my birthday and when i tried to add it on my balance on my ipod touch it says the code you entered is not  recognized as a valid code. but i just got this card brand new for my birthday.

    Make sure you're using the correct code. For most iTunes cards, the code is under the scratchoff area on the back of the card. For more information, see this support article:
    http://support.apple.com/kb/TS1292
    If you can't get to work after perusing that page, contact the iTunes Store Support; instructions are at the bottom of that article.
    Regards.

  • Adobe acrobat pro 9 keeps telling me "the serial number I entered is not valid"

    I recently had my macbook pro logic board fail and had to purchase a new macbook pro (expensive reinvestment after only 3 years but that's another story).
    Anyway, all of my cs4 upsell products loaded just fine, except adobe acrobat pro 9 keeps telling me "the serial number I entered is not valid." After contacting adobe thru chat several times, here is the info I got back: my serial number IS valid, I still can activate 3 more times (deactivation was not an issue in this case), the final answer was  the cs1 server (my previous version before cs4) is no longer available which basically renders my version of acrobat unusable. Is that really the case? Now that I have a new computer I can't use that software any longer it was working fine on my old laptop? Why did all the other software load okay? Did I miss something or is buying another upgrade neccessary?
    ps: using Macbook Pro with MacOS X.8.5

    Indesign, Illustrator, Photoshop, Dreamweaver are all working just fine. I haven't needed any other apps yet since the reinstall. Install actually worked fine too for Adobe Acrobat Pro 9.0 but when I try to open anything in it I get the Software Setup Screen and it wants me to enter the serial number for the product, when I do it says the serial number is invalid. I included a screen shot below with the serial number removed so you can see. In chatting with adobe, my rep said it is a valid number (obviously since it worked fine on my other apps), but the server for CS1 is no longer available and since I have an upsell from CS1 they cannot offer me support and to take my question to the forum board, so here I am.

  • I got a $50 iTunes gift card for Christmas that doesn't seem to work. Everytime I enter the code, a box pops up that "Code entered is not valid". Please help me?

    I got a $50 iTunes gift card for Christmas that doesn't seem to work. Everytime I enter the code, a box pops up that "Code entered is not valid". Please help me?

    iTunes Store: Invalid, inactive, or illegible codes

  • TS1292 I have four $50 iTunes gift cards. I am not able to load any of the codes into my new iPad account. I know I have not made any mistakes with typing in the 16 digit code. I keep getting the "code you entered is not recognized as a valid code" messag

    I have tried all I can to load iTunes cards into my iPad without success. Upon giving one of the cards to a friend he conveniently loaded. I keep getting the error message: "The code you entered is not recognized as a valid code". I just don't know what to do as I need to use these cards to make purchases off the I tunes store.

    i tried with out using commmit but it is not creating Status.
    When i see the function module help and they are trying to COMMIT
    FU STATUS_OBJECT_CREATE
    Short Text
    Create Status Object
    Functionality
    The function module generates a status object.
    Take the object number from the object number management (function modules OBJECT_NUMNBER_GET_xx).
    If no object number is given, the module takes a temporary object number that must be replaced later (function module STATUS_OBJECT_SWITCH_NUMBER).
    Example
    Creating an internal order with number 100123 (object type "ORC") for status profile "STATSCHEM" with final object number
    call function 'OBJECT_NUMBER_GET_OR'
      exporting
        aufnr = '100123'
      importing objnr = objektnummer.
    call function 'STATUS_OBJECT_CREATE'
      exporting
        objnr = objektnummer
        obtyp = 'ORC'
        stsma = 'STATSCHEM'.
    commit work.
    Creating the same order with a temporary object number
    data: objectkey like ionra.
    * TBO00-REFSTRUCT for object type 'OR' is 'IONRA'
    objectkey-aufnr = '100123'.
    call function 'STATUS_OBJECT_CREATE'
      exporting
        i_objectkey = objectkey
        obtyp       = 'ORC'
        stsma       = 'STATSCHEM'.
      importing
        objnr       = objektnummer.
    call function 'OBJECT_NUMBER_GET_OR'
      exporting
        aufnr = '100123'
      importing objnr = objektnummer_neu.
    call function 'STATUS_OBJECT_SWITCH_NUMBER'
      exporting
        objnr_old = objektnummer
        objnr_new = objektnummer_neu.
    commit work.
    Notes

  • Please Help! Error message: Incorrect serial number, The serial number you entered is not valid. Click OK to retry serial number.???

    My old PC crashed and died, and I am unable to deactivate the licence of Photoshop Elements 7.
    I re-installed Photoshop Elements 7 via a trial download from Adobe website onto my new PC, Windows 8.1 single language.
    My serial number is not accepted.
    Error message: 'Incorrect serial number, The serial number you entered is not valid. Click OK to retry serial number'.
    Customer help care is not helpful and keep ending my chat before I get a solution.
    Can someone please help me and let me know how I can rectify this problem!!!

    Thank you Benjamin MItchley.  I reviewed the chat log and I can confirm that they are correct we do not provide installation support for Photoshop Elements 7 due to the age of the software title.  Photoshop Elements 7 also does not support activation so there is no risk that you were unable to deactivate the software on your previous computer.
    I am showing the serial number under your account was provided from an equipment manufacturer.  It is possible there may have been a customized installer for that version.  Have you contacted the computer manufacturer to obtain the installation files for the copy of Photoshop Elements 7 included with your computer?
    Since you did not migrate/transfer over any files it is unlikely there is a software issue preventing the installation.  You can try running the CC Cleaner Tool to ensure that no corrupt licensing files may be preventing the installation process.  You can find details of the use of the CC Cleaner Tool at Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6 - http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html.

  • HT1918 plz i want help , how can i use credit card visa , im try to fill blank no. card information when i finish appear me msg ( the payment card you entered is not valid in israel p;ease provide avalid payment card for israel , im from palestine ) plz s

    plz i want help , how can i use credit card visa , im try to fill blank no. card information when i finish appear me msg ( the payment card you entered is not valid in israel p;ease provide avalid payment card for israel , im from palestine ) plz solutio?

    Oh thank god i am not the only one with this problem. It started with me on Saturday (aug 28) and still, no solution.
    I live in the border with the USA so i’ve been using my itunes account with a USA debit card and then it started with that **** declined CC problem =S
    The funny thing is that i’ve been trying to change countries, setting my account to Mexico and it would still say that the CC are declined. Tried 2 USA cards and 2 Mexican cards, no results =S
    Wanna read something funny. I even tried to create a brand new account based in Mexico, with another email address and it still wouldn’t let me, tells me my cards are not valid……..the **** apple!!! i cannot update any app and i just got my iphone 4 on friday last week and i am dying to try new apps.
    So far I’ve sent 2 emails and still no **** solution. At least i am not alone =’(

  • Can't get Netflix to recognize an iTunes purchase keeps coming us with "the credit card information that you entered does not appear to be valid

    Can't get Netflix to recognize an iTunes purchase keeps coming us with "the credit card information that you entered does not appear to be valid'? Netflix says not them?

    The message you received indicates that the phone is locked to a carrier other than the one for which you have a SIM. You'll need to take the issue up with Apple. Nothing you do with iTunes is going to make a difference. 
    I'm quite surprised that the UK Apple Store replaced a U.S. purchased phone. They usually won't.
    Best of luck.

  • The payment card you entered is not valid in Philippines.

    Hello.
    iTunes won't let me purchase any apps because this error keeps appearing.
    "The payment card you entered is not valid in Philippines. Please provide a valid payment card for Philippines."
    I was trying to purchase an app when iTunes notified me that the debit card that I was using was about to expire so I made changes about the expiry date and such, but to no avail, it keeps on nagging me.
    The debit card that I am using is my dad's and he is currently in the US, I was assuming I only have to change my billing info into his current address. It still doesn't work. I also tried changing my region from the Philippines to the US but none of it work.
    My last purchase was on the 30th of June and I think a few days prior to that was when iTunes Philippines was established. I don't know if this is a relevant information but I will appreciate any help.
    I'm at wits' end. I badly needed to buy this app!
    Help!

    This may seem a little late but I finally made it work!
    I changed my region from the Philippines to the United States then iTunes prompted me to 'create' an Apple ID so I did and entered my information in the required fields. Hopefully now, everything is beautiful and nothing hurt.
    @varjak paw:
    Thanks for trying to help, though. I really appreciate it.

  • HT201363 my rescue me email is no longer active. trying to get a call scheduled but it says all the numbers i enter are not valid.....help!!

    my rescue me email is no longer active. trying to get a call scheduled but it says all the numbers i enter are not valid.....help!!

    Hi aj_russ,
    As long as you still have access to your Apple ID account, you should be able to change or edit the Rescue email address associated with your security questions. You may find the following article helpful:
    Apple Support: Rescue email address and how to reset Apple ID security questions
    http://support.apple.com/kb/ht5312
    Regards,
    - Brenden

  • HT2737 the code you entered is not recognised as a valid code

    why my new APP store gife card shows taht   the code you entered is not recognised as a valid code?

    I had the same issue and called support. They told me to send the problematic code to [email protected] and they would reissue a new code within 72 hours. I just sent the email so have not heard back yet.

  • TS1292 I put the code in correctly but it says, "The Gift certificate or prepaid code has not been properly activated." or "The code you have entered has not been recognized as valid." Help ?

    I put the code in correctly but it says, "The Gift certificate or prepaid code has not been properly activated." or "The code you have entered has not been recognized as valid." Help ?

    You will need to contact the iTunes Store.

  • Itunes will not accept my Credit Card entered is not valid in Australia what duh?

    This is my first time I've got an issue with Itunes,  I have to say I am APPLE biggest buyer and a loyal customer of APPLE but this error seems ridiculous.  I've been using the same credit card in itunes with no problems till today.  My last purchased was on the 3 March 2012, got 3 apps from itunes for my Iphone.  Just this morning tried to get another app with the same credit card, comes with an error stating that
    'The credit card you entered is not valid in Australia. Please provide a valid credit card for Australia'
    I find this is totally incorrect, I had contact my financial instituation confirming that there is nothing wrong with my card which is true.  I done searches in Apple Support regarding the error, implying that it could be the post code or the address, I can assured there is nothing wrong with my billing or postal address as it has always been the same.  I don't see what would be the reason my card got rejected?    This is very frustrating NOT HAPPY JAN!!............
    Not a happy customer at the moment

    It's frustrating, I thought there was something wrong with my credit cards then I called my bank. It was confirmed that two my cards were working. I entered two cards and same error.
    You would need Mac Store to update your Mac as well :( its funny it was working two days ago I hope Apple can compensate lol

Maybe you are looking for