MS Access: IIF query like "text*" - ms-access

I am trying to create a query in my database to display data in a useful way.
I have queried the enquiries logged by my company to find the email addresses and associate the product codes they have enquired by
What I now want to do is condense this data into a more useful format. So have the email address and the last of each info column and then have the product codes in column that are checked if correct.
Does anyone out there have any ideas on how to get my data displayed like that?

Related

MS Access: How to search a value on a table by clicking on a form record

I'm pretty new to Access and coding in general and I've been working on a database that was filled with data extracted from SAP.
I have a query that works as a way to "summarize" the information of a bunch of records from some purchase orders, it does sum the total of each PO, it's date as well as other information. It does consolidate a variety of items related to the purchase order into a single record that is displayed in a continuous subform for easy analysis in this structure.
[MES_CORTE][SOLPED][PO][FirstMIGO][TOTALPOVALUE]
This way, the user can preview easily each purchase order, date, value and other relevant information. This query is also used to generate some reports.
However, I want to be able of opening the source table ([Registro_OC]) and search the related records by clicking a field on the subform for a detailed view and posibly to edit or enter new data. is it posible?
I've tried to code some macros but can't figure out how to reference the table fields related to the query fields that are on the form.
Also, it seems that Access doesn't allow to create subforms based on continous forms.
Any help and opinions are appreciated.

How to list values from MySQL table in VB.Net

I would have posted some code, however I completely have no idea where to start!
So I want my employees to use my VB application to request holiday (that bit is done). But now I want them to see all the holidays they have requested in a list.
They each have their own account and their username is present on the holiday table in the database.
It must be able to show all holidays they have booked and not just one, preference is in a list form. I'd also like to exclude 1 column from showing.
Is this possible?
I really appreciate your help in advance.

Format combox in Access 2007

In my table I have one unique customer number per many invoice numbers. I only want to see that unique customer number with a summary of all the invoices on the print preview screen and see the unique customer number associated with the invoices on the list of the combo box using the drop down arrow. How do I do that? I am using Access 2007
Sounds like your first problem would be addressed with writing a report to show the result of a query that would list the summary details of all invoices tied to a customer number. This number would be fed to the query from your calling form.
Your second issue sounds like a combo box on your form that would be populated by a SQL SELECT statement in your control source that would pull information on invoice numbers tied to the customer number presented on the form.
I'm being general as I don't know your implementation, and you have failed to provide any context and previously tried-and-failed code.

ms access query results display problems

I'm trying to produce a list of names and addresses of our clients that have paid within a particular timeframe.
Doing a query with just the client table is fine, but when I link in the payment table and access fields from that, the clients address (memo field from the client table) is displayed only as little square symbols. If I leave the payment table joined in on the query but don't print any fields from it, all's well but, as soon as I use data then the address gets fried.
Any idea what's wrong?
This may be of interest: Index corrupts memo-field in joined table
It suggests using the solution offered by http://allenbrowne.com/bug-18.html

ms access converting data to field name

Good day,
In ms access, I created a form with a combo box that list all products,
a subform(datasheet) that list all companies that sell that product.(the data)
I want the company names(data) to become (in datasheet-subform) the actual field names, in the datasheet, so i can have other details for that company in that column.
Like How You compare phones, with phone name(heading-field name) and it's features under it,
plz
thank you
Do you mean a crosstab query? A subform control will accept a query as a source object.