0
votes
3answers
27 views
Powerpoint VBA - Distribute columns evenly
Am using powerpoint 2000 which does not have the distribute columns evenly function that 2003 and newer has.
Anyone know what VBA code would be used to distribute selected table columns evenly?
(I …
1
vote
1answer
29 views
IFileOpenDialog and IFileSaveDialog from VBA
How do you call IFileOpenDialog and IFileSaveDialog from VBA?
According to Microsoft, applications written for Windows 7 and later should use IFileOpenDialog/IFileSaveDialog API calls instead of …
0
votes
0answers
8 views
vba - cleaing up RecordSet
In VBA, is it good enough to do this:
Dim rs as ADODB.Recordset
' do some stuff with rs
set rs = Nothing
Or is it better to call rs.Close and then do the set rs = Nothing? I think setting rs to …
0
votes
1answer
34 views
what is MDO with VBA?
i do lots of vba with excel.
what is mdo?
if i want to do vba with mdo what does that mean?
3
votes
5answers
6k views
How to protect cells in Excel but allow these to be modified by VBA script
I am using Excel where certain fields are allowed for user input and other cells are to be protected. I have used Tools Protect sheet, however after doing this I am not able to change the values in …
0
votes
2answers
54 views
what is the purpose of OFFSET in excel?
In Excel, the Offset function returns a reference to a range that is offset a number of rows and columns from another range or cell.
can someone please tell me what that means?
for example in this …
1
vote
4answers
625 views
VBA code for SUMIFS?
I'm trying to write a custom function that will let me retrieve a cell from the first row in a range that meets x number of criteria. I imagine this would be very similar to the way SUMIFS works, just …
0
votes
3answers
84 views
svn api to access repo files from VBA
I'm new to VB and SVN and involved in writing automation scripts in VBA. I've got a requirement where we need to 'retrieve ,checkout ,add ' files to SVN remote repository from VB code in background as …
0
votes
2answers
42 views
How to requery a subform from another form?
I've struggling with this problem on my own, then with some help, then search about it; but I haven't had any luck. So I decided to ask.
I have two forms in Access 2007 lets call them MainForm and …
0
votes
2answers
27 views
Merge and Left Justify a Range of Rows in Excel
I have a macro to select a range of cells on the same row and then merge & left justify that selection. I would like to enhance it to allow me to select a range or block of rows and perform the …
0
votes
0answers
9 views
Refresh Pivot Table With XML From ServerXMLHTTP Response
I have succesfully made an Ajax like request to a web service using Microsoft Excel.
My goal is to have a button that the user can click to pull down the information and refresh the pivot tables …
2
votes
2answers
482 views
How to “flatten” or “collapse” a 2D Excel table into 1D?
I have a two dimensional table with countries and years in Excel. eg.
1961 1962 1963 1964
USA a x g y
France u e …
5
votes
1answer
44 views
Who am I? How to use Microsoft Office Permission/UserPermission
Microsoft Office documents, im my case: PowerPoint presentations, can have restricted permissions. How can I find out, programmatically, which permissions my code has on a given document?
All I can …
0
votes
0answers
9 views
Question about replicating Word form fields in a table
I have a project in development that uses Word documents as an input mechanism to a larger system. My company's client has 4 different Word documents they use that contain form fields. When the …
1
vote
1answer
17 views
Iterating quickly through Outlook appointment items
I've written a macro which iterates through a users calendar and makes modifications to entries that fufil a certain critera.
The problem is that when the calendar is very big, this takes a long time …
