+ Reply to Thread
Results 1 to 8 of 8

copy and paste special and delimiters

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    03-31-2013
    Location
    Texas
    MS-Off Ver
    Excel 2010
    Posts
    211

    Re: copy and paste special and delimiters

    Quote Originally Posted by moneypennie21 View Post
    I have tried copy and paste the columns as format 'general' to remove any text as this did occur to me as well but it still does not stop the #VALUE error. Is it something to do with the way I am copy paste special the data as 'values and number formats only' from the original spreadsheet or something to do with the original spreadsheet containing the formulas?
    I am not sure, save a copy and then you can try to copy and paste it differently and see what happens. I've not given up just think to think a bit and perhaps someone else with more expertise than I can chime in. I know these things can be aggregating

    Do you do any color formatting of any conditional formatting with this? The reason I ask is because I wrote a little Macro thast "fixes" any and all numbers BUT it will take away any CF you may have. I need to redo the Macro so it does not do this. Save a copy and you can try to run it


    Sub changetonumber()
    Dim cell As Range, s As Variant
    For Each cell In Selection
      s = Trim(cell.Value)
      If IsNumeric(s) Then
         cell.Value = CInt(s)
      End If
    Next
    End Sub
    Last edited by Larbec; 09-21-2015 at 10:19 AM.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. disable copy/cut/paste/paste special in excel 2010
    By Alina Loredana in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 10-22-2014, 06:43 PM
  2. copy formula and paste for new data added and autofill.....and paste special values
    By prabhuduraraj09 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 04-13-2014, 07:40 AM
  3. [SOLVED] Simple copy and paste macro- Paste special help needed.
    By hernancrespo in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 11-20-2012, 07:02 AM
  4. Replies: 1
    Last Post: 10-01-2012, 11:11 PM
  5. Replies: 2
    Last Post: 03-27-2012, 02:49 PM
  6. [SOLVED] help w/ generic copy & paste/paste special routine
    By DavidH in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 01-23-2006, 12:00 AM
  7. [SOLVED] Can't Copy and Paste or Paste Special between Excel Workbooks
    By wllee in forum Excel General
    Replies: 6
    Last Post: 04-05-2005, 03:06 PM

Tags for this Thread

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1