Results 1 to 6 of 6

Thread: Convert Excel Formulas That Contain Specific Function In To Value

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #4
    Senior Member
    Join Date
    Jun 2012
    Posts
    337
    Rep Power
    13
    So wouldn't this suffice in that case?


    Code:
    Sub M_snb()
        on error resume next
        c00=inputbox("formula")
    
        for each sh in sheets
          for each cl in sh.Cells.SpecialCells(-4123)
            if instr(cl.formula,c00) then .Value = .Value
          next
        next
    End Sub
    Last edited by snb; 09-28-2013 at 01:46 AM.

Similar Threads

  1. UDF (user defined function) replacement for Excel's DATEDIF function
    By Rick Rothstein in forum Rick Rothstein's Corner
    Replies: 21
    Last Post: 03-07-2015, 09:47 PM
  2. TO convert Excel entire workbook in csv format
    By pritee in forum Excel Help
    Replies: 11
    Last Post: 08-16-2013, 11:28 AM
  3. Replies: 8
    Last Post: 07-01-2013, 03:52 PM
  4. Learning To Write Excel Formulas And Functions
    By venkat1926 in forum Excel Help
    Replies: 0
    Last Post: 05-19-2013, 09:30 AM
  5. Replies: 1
    Last Post: 05-20-2012, 12:23 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •