0
votes
Combine rows in Access 2007
To combine rows in Access, you'll probably need code that looks something like this:
Public Function Coalesce(pstrTableName As String, pstrFieldName As String)
Dim rst As DAO.Recor …
1
vote
MS Outlook VBA - When is a MailItem not a MailItem?
My memory is somewhat cloudy on this, but I believe that a MailItem is not a MailItem when it is something like a read receipt. (Unfortunately, the VBA code that demonstrated this was written at an …
0
votes
How do you get Excel to refresh data on sheet from within VBA?
You might also try
Application.CalculateFull
or
Application.CalculateFullRebuild
if you don't mind rebuilding all open workbooks …
3
votes
Strings containing double quotes in Excel
Alternatively, you can use the CHAR function:
= "Maurice " & CHAR(34) & "Rocket" & CHAR(34) & " Richard"
…
0
votes
Does MS access(2003) have anything comparable to Stored procedure. I want to run a complex query in MS acceess
Well, you can use a Recordset object to loop through your query in VBA, concatenating field values based on whatever criteria you need.
If you want to return the results as strings, you'll …
1
vote
Where does Outlook store the VBA code files?
This page has some really good insight on where Outlook keeps all its stuff. It suggests the following:
…
