Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Starlitnight

  1. Starlitnight

    SQL Can I update a table via an array:

    Thank you for your time and explaining this to me! Thank for giving the work-around for it through a temp table, I am grateful.
  2. Starlitnight

    SQL Can I update a table via an array:

    Bascially I want to UPDATE a particular column Essentially I want to do the following: ALTER PROCEDURE WriteStockStatus (@asin varchar(10), @asinStockStatus varchar(15)) AS UPDATE OnSale SET StockStatus=@asinStockStatus WHERE ASIN=@asin Ok, but, I don’t want to have to call...
  3. Starlitnight

    SQL can I update a table with an array?

    Bascially I want to UPDATE a particular column Essentially I want to do the following: ALTER PROCEDURE WriteStockStatus (@asin varchar(10), @asinStockStatus varchar(15)) AS UPDATE OnSale SET StockStatus=@asinStockStatus WHERE ASIN=@asin Ok, but, I don’t want to have to call...
  4. Starlitnight

    Hopefully an Easy one. Less Than symbol NOT recognized as a field

    =if(or(<Field1>=0,<Field1>="",<Field1><0.005),"TEXT","text2")
  5. Starlitnight

    Hopefully an Easy one. Less Than symbol NOT recognized as a field

    Hi, I have an issue while trying to put in a formula... all I need is for it to check if a field is < 0.0005 ...The problem I'm having is that Excel is reading the < as value rather than the less than symbol. Any ideas on how to fix this?
  6. Starlitnight

    How do I get a submit button to send web form inot?

    I'm trying to write code for when the submit button is clicked and everything is filled in correctly, the filled out form will be sent to my job as an attachment. Do you have any idea how to do this? I'm using the ASP server side language.
  7. Starlitnight

    If statem to search for special charecter

    YES! That worked! Thank YOU!
  8. Starlitnight

    If statem to search for special charecter

    Hi, I would like to know how to create a formula that would search for an asterisk *. If I write: =IF(ISNUMBER(SEARCH(""*"",A1)),"<myfield>","") Excel treats the * as a special charecter is there any way around this? Thanks
  9. Starlitnight

    How do I get a submit button to display results in Word?

    Thank you, That is VERY helpful. :)
  10. Starlitnight

    How do I get a submit button to display results in Word?

    Hi, I have created a “submit” button on a form. When the button is clicked, I want the results to appear in a word document. Can I make this happen? If so, how? The form results display names for labels.
  11. Starlitnight

    excel 2003 deleting group of defined names

    Thank you so much! I appreciate the help!
  12. Starlitnight

    excel 2003 deleting group of defined names

    Hi John, thanks for the post! The only problem is that there are defined name I actually do want to keep. I was hoping for a something such as "if defined name = "act"&"*" but guess I'm not that lucky....I knew I should've been a drummer!
  13. Starlitnight

    excel 2003 deleting group of defined names

    Hello, Is there a fast way to delete defined names in an excel worksheet? I'd rather not go line by line in the defined name dialog box. Is there another way I can delete groups of defined names? They all start with "act".
  14. Starlitnight

    Can CInt() be summed?

    Thank you! I looked up nz on the internet and your definitions and examples are much more clear. Thank you again.

Part and Inventory Search

Back
Top