Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
how to display excel data in body of the outlook automatically
When i click a command button in excel sheet the data which is present in that particular sheet should be pasted in body of the outlook.
Ron de Bruin has VBA code for any conceivable scenario between Excel and Outlook.
http://www.rondebruin.nl/win/s1/outlook/mail.htm
Select what you need, for example "Mail one sheet" or "Mail one worksheet in the body of the mail".
If you need more specific help, post your code.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 days ago.
Improve this question
Would like to send out recurring emails at certain times (eg. every weekday, 7pm) with excel attachment if certain conditions in that excel file is met via gmail. Im using Windows10.
Would it be possible using vbscript or VBA?
Thank you
Have done some research and it seems to lead me to scripts for outlook only and not gmail
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I have 20 textboxes in a userform and I want to move the text from textbox1 to
textbox5 by dragging and dropping it with the mouse, but I really have no idea how to do this. I am not an experienced programmer in VBA so maybe it is not even possible
No VBA required! It is simple than you think :)
Set the DragBehavior of the TextBox to fmDragBehaviorEnabled at design time as shown below and you are done
In Action
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I need to copy and paste certain tables from excel and paste them in a powerpoint presentation as a bitmap picture once a month. It takes 2 to 3 hours when I do it manually. Is there something I can do to automate this process? I tried recording a macro but it didn't work the way I've anticipated. I haven't tried to write a VBA code yet, just wanted to know if it is worth my time. If you have any other suggestions, please let me know.
Paste the tables as objects instead that way it will be automatically updated.
You copy the range you need in Excel then when you paste it in PowerPoint you paste special:
Then paste as link and choose MS Excel Object.
When you make changes in Excel the changes should happen in PowerPoint too.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I want to automate AS400 through a VBA code.
I would make a simple macro that make access to AS400 and insert some text in a field.
It is possible?
I search on internet and i understand that exist a PCOMM properties that allow to command AS400 from VBA Macro. It's right?
Thank's for your support!
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I have created an user-defined function in excel. It works well. However I have to insert that Excel file in MS Word as an object, and when open that file from MS Word, my UDF turns to #NAME.
I already keep my UDF as an add-in to make it available in all the workbooks.
I want it works when it is attached in MS Word too. Is there any way to fix it that not copy and paste as value. Thank you in advance.
The issue is that if it is in the Excel add-in the add-in is only loaded in Excel but not in Word (therfore Word doesn't find the UDF because it is not loaded).
Put the UDF code into the Excel file itself (not the add-in) so it is available if Word loads that Excel file.