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 …
0
votes
How can I make MS Access Query Parameters Optional?
Well, you can return non-null values by passing * as the parameter for fields you don't wish to use in the current filter. In Access 2003 (and possibly earlier and later versions), if you are using …
1
vote
How can I automate exporting of tables into proper XML files from MSSQL or Access?
If you want a document instead of a fragment, you'll probably need a two-part solution. However, both parts could be done in SQL Server.
It looks from the comments on Tom's entry like you …
1
vote
How do I make foreign-key combo boxes user-friendly on an Access form?
To expand on Loesje's answer, you use the Bound Column property along with Column Count and Column Widths when you are displaying multiple fields so that you can tell Access which one should be wri …
3
votes
Upsizing a split Access database
I would agree with your first guess: you will want to run the wizard on the back-end mdb.
Once that's in SQL Server, also as you guessed, you'll want to link the front end to work with the …
1
vote
First page of MS Access Report does not seem to call On Page Event
I would recommend restructuring your code so that you build your data in one query, multiple queries, or in VBA, and then open the report with the new datasource. I might still have Access 2000 at …
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 …
2
votes
How to change a column’s “Row Source” in Access table at run-time?
I don't know whether or not this is an option for you, but I would recommend separating the table and filtering options, setting up a form to do the data entry and modification and using code to se …
5
votes
Multiple NOT distinct
Another way of returning the results you want would be this:
select *
from
my_table
where
B in
(select B from my_table group by B having count(*) > 1)
…
1
vote
Read-only Access data source
To build on Matt's answer, I would recommend a combination of adOpenForwardOnly and adLockReadonly: ForwardOnly because you just need to insert those trades into SQL Server, and Readonly so you are …
