Search:

Type: Posts; User: manandpc

Search: Search took 0.02 seconds.

  1. Re: Lambert W function for Excel, work on real and complex number

    See: http://www.had2know.com/academics/lambert-w-function-calculator.html

    "If x is within the sub interval (-1/e, 0), the calculator returns two values."

    And for x = -0.0211, the calculator...
  2. Re: delete all records with the oldest date in field DATE1

    DATEADD also work for ms-access, see the reference (link)
  3. Re: delete all records with the oldest date in field DATE1

    If you are using Transact-SQL then use DATEADD in your query

    Reference: http://msdn.microsoft.com/en-us/library/ms186819.aspx
  4. Replies
    4
    Views
    850

    Re: Need Macro to pull data

    More details on it....., what kind of inputs?, put a sample
  5. Lambert W function for Excel, work on real and complex number

    The Lambert W function (very efficient, fast)

    See, LambertW.bas to get the VB module (attach)

    Input: real or complex values from -infinity to +infinity
    You can verify the results with
    ...
  6. Replies
    3
    Views
    23,917

    Re: Pure CSS Folded Corner Effect With Animations

    That code is not complete if you dont put the HTML code for TESTING

    here is a simple Animation.html


    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"...
  7. Re: Excel Find Method in Excel VBA (Any version of Excel)

    Here is a subroutine that can be used to find the last cell in a sheet that contains a string.

    First, make it similar to the Ctrl-F (excel default find), but more simple
    Second, adjust the where...
  8. Re: Excel Find Method In Excel VBA (Any version of Excel)

    Sub FindLast()
    Static sWhat
    sWhat = InputBox("Find What:", "FIND LAST", sWhat)
    If sWhat <> "" Then
    Dim rFound As Range

    On Error Resume Next
    Set...
Results 1 to 8 of 8



Click Here to Expand Forum to Full Width