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??
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??
Last edited by sonny.thind; 07-20-2011 at 03:35 PM.
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 theicon 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!)
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
Yes, I suppose you can add an input box for any purpose you want.
Sure, 1000s of examples on this forum and via Google. One small example:is it possible to copy the output cell and automatically sending it to outlook?
![]()
Please Login or Register to view this content.
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.
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..
Sub Mail()![]()
Please Login or Register to view this content.
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.
[/CODE]![]()
Please Login or Register to view this content.
Last edited by sonny.thind; 07-20-2011 at 03:09 PM.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks