+ Reply to Thread
Results 1 to 7 of 7

error with Formulas when transposing ito single cell

  1. #1
    Forum Contributor
    Join Date
    07-04-2011
    Location
    London, Ontario
    MS-Off Ver
    Excel 365
    Posts
    119

    error with Formulas when transposing ito single cell

    Hi,

    please see attached my sheet as an example

    The Code I am using to transpose all the data from column "C" gives me an error when it encounters the "N/A" .

    help??
    Attached Files Attached Files
    Last edited by sonny.thind; 07-20-2011 at 03:35 PM.

  2. #2
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: error with Formulas when transposing ito single cell

    Try this, it will ignore any error formulas:

    Please Login or Register  to view this content.
    _________________
    Microsoft MVP 2010 - Excel
    Visit: Jerry Beaucaire's Excel Files & Macros

    If you've been given good help, use the icon below to give reputation feedback, it is appreciated.
    Always put your code between code tags. [CODE] your code here [/CODE]

    ?None of us is as good as all of us? - Ray Kroc
    ?Actually, I *am* a rocket scientist.? - JB (little ones count!)

  3. #3
    Forum Contributor
    Join Date
    07-04-2011
    Location
    London, Ontario
    MS-Off Ver
    Excel 365
    Posts
    119

    Re: error with Formulas when transposing ito single cell

    Quote Originally Posted by JBeaucaire View Post
    Try this, it will ignore any error formulas:

    Please Login or Register  to view this content.
    Thanks Mate! works like a charm..

  4. #4
    Forum Contributor
    Join Date
    07-04-2011
    Location
    London, Ontario
    MS-Off Ver
    Excel 365
    Posts
    119

    Re: error with Formulas when transposing ito single cell

    An addendum to this required

    Can I add an Input box for inputing the ID # data into column "B" (each ID #seperated by commas)?

    also is it possible to copy the output cell and automatically sending it to outlook?

    thanks

  5. #5
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: error with Formulas when transposing ito single cell

    Quote Originally Posted by sonny.thind View Post
    Can I add an Input box for inputing the ID # data into column "B" (each ID #seperated by commas)?
    Yes, I suppose you can add an input box for any purpose you want.



    is it possible to copy the output cell and automatically sending it to outlook?
    Sure, 1000s of examples on this forum and via Google. One small example:

    Please Login or Register  to view this content.

  6. #6
    Forum Contributor
    Join Date
    07-04-2011
    Location
    London, Ontario
    MS-Off Ver
    Excel 365
    Posts
    119

    Re: error with Formulas when transposing ito single cell

    Ok So I found a Macro to send the emails --however I still have to click the 'Check Name' tab in outlook to validate the addresses from my exchange server.
    how do I add this to the macro to do it for me?
    here is the code..

    Please Login or Register  to view this content.

    I was wondering if I need to start a new thread for this issue as this is not relevant to the original thread. i just need to know how to add the resolve all on the above macro
    Last edited by sonny.thind; 07-20-2011 at 01:47 PM.

  7. #7
    Forum Contributor
    Join Date
    07-04-2011
    Location
    London, Ontario
    MS-Off Ver
    Excel 365
    Posts
    119

    Smile Re:Automatically Validate Email address 'Check names' tab in Outlook

    Ok So I found a Macro to send the emails --however I still have to click the 'Check Name' tab in outlook to validate the addresses from my exchange server.
    how do I add this to the macro to do it for me?
    here is the code..


    Please Login or Register  to view this content.
    Sub Mail()
    Dim OutlookApp As Object
    Dim Mess As Object, Recip
    Recip = Range("E8")
    Set OutlookApp = CreateObject("Outlook.Application")
    Set Mess = OutlookApp.CreateItem(olMailItem)
    With Mess
    .Subject = "Subject"
    .Body = "Body"
    .To = Recip
    .Display
    End With

    End Sub
    Please Login or Register  to view this content.
    Please Login or Register  to view this content.
    [/CODE]
    Attached Files Attached Files
    Last edited by sonny.thind; 07-20-2011 at 03:09 PM.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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