The field Names and Number of Fields change every time. I am also using the table to print a field listing for a report as well so keeping the names Field 1 through whatever might not work the best...
Thanks again guys,
might just have to suck it up..
I have a report that I need to create that is going to be a data dump of 25 selected records from "tblImport", but my issue is the fields are going to change in this table daily.
This will select my records and fields, but need a report to be displayed off of this query without having to...
I have a database that will have a file imported multiple times in a day to be ran through some queries. This file will be different every time. I have a query that selects a random 25 records for a data dump but what is the easiest way to create a report that will change with the new fields...
I am looking to parse names that go into a table in the field "FULLNAME", but I only want this qry to run if there is 1 space in the field.
UPDATE tblStandardLayout SET tblStandardLayout.FNAME = Left([FULLNAME],InStr([FULLNAME]," ")), tblStandardLayout.LNAME = Mid([FULLNAME],InStr([FULLNAME],"...
This gives me a layout of a table in the debug screen. How can this be alterd to show in a report?
Public Sub fieldProperties()
Dim tblStandeardLayout As String
Dim rs As DAO.Recordset
Dim fld As DAO.Field
Set rs = CurrentDb.OpenRecordset("tblStandardLayout")
For Each fld In...
Can this be done in a Report? This way I can see counts on multiple fields instead of running multiple queries?
SELECT Len([COMPANY]) AS Length, Count(tblStandardLayout.COMPANY) AS CountOfData
FROM tblStandardLayout
GROUP BY Len([COMPANY]);
and
SELECT Len([TITLE]) AS Length...
Thank you that is perfect. Is there a way to get counts of a field.
Say I run a query on the company field and i want a layout something like this. Where length is the number of characters and count is the number of records that are that length.
Lenth Count
10 1
20 5
30...
Is there a way to get charater counts of a feild in a table.
So if I have a company feild I want to get a count on how many are under or over 50 charaters long.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.