Register
Help
Remember Me?
Forum
What's New?
Activity Stream
New Events
Mark Forums Read
Quick Links
Today's Posts
How to Post a Question
How to Mark Thread Solved
How to Attach Files
Advanced Search
Home
Activity Stream
Activity Stream
Filter
Sort By
Time
Show
Recent
Recent
Popular
Popular
Anytime
Anytime
Last 7 Days
Last 7 Days
Last 30 Days
Last 30 Days
All
All
Photos
Photos
Forum
Forums
Filter by:
Last 7 Days
Clear All
New Activity (
)
Please reload this page to view the 200+ new activity items that have been created.
Older Activity
Today,
04:37 PM
madpiet
replied to a thread
Variable number of entries in a field
in
Access
Hello, I am trying to make a nice database for my board game collection, with the name, publisher, year published, # of players etc... One of the...
see more
4 replies | 44 view(s)
Today,
03:58 PM
CJ_London
replied to a thread
Variable number of entries in a field
in
Access
A multi value field still has the many to many table, it’s just that it is hidden and limited in structure- basically just containing the PK of the...
see more
4 replies | 44 view(s)
Today,
12:16 PM
davegri
replied to a thread
Variable number of entries in a field
in
Access
Have a look here. Many-To-Many, two ways to update Junction table, includes Not In List handling
see more
4 replies | 44 view(s)
Today,
11:57 AM
June7
replied to a thread
Variable number of entries in a field
in
Access
Yes, multi-value field is not preferred by experienced programmers but if you fully understand its drawbacks and how to deal with, it might be...
see more
4 replies | 44 view(s)
Today,
11:46 AM
Ken Sheridan
replied to a thread
Do not display column when total is zeo
in
Access
That's how the UnencodeColumns demo which I attached earlier recasts the incorrectly modelled data. It then requires a simple crosstab query to...
see more
9 replies | 122 view(s)
Today,
11:45 AM
FredoC
started a thread
Variable number of entries in a field
in
Access
Hello, I am trying to make a nice database for my board game collection, with the name, publisher, year published, # of players etc... One of the...
see more
4 replies | 44 view(s)
Today,
08:11 AM
mike60smart
replied to a thread
Do not display column when total is zeo
in
Access
Hi Vinay Your query example is based on a table that is based on an Excel Spreadsheet. You should think Access which would display your data as...
see more
9 replies | 122 view(s)
Today,
07:14 AM
jlindquist23
replied to a thread
Text field missing carriage returns
in
Access
I ended up starting over and creating a new report with the same data and settings I entered above and it stopped truncating. Thank you for your...
see more
12 replies | 115 view(s)
Today,
07:04 AM
Ken Sheridan
replied to a thread
Is Access report the right tool here?
in
Reports
A late reply I know, but might be useful. For the players use a 2-column subreport within a parent report. The parent report can be bound or...
see more
6 replies | 1033 view(s)
Yesterday,
09:15 PM
jojowhite
replied to a thread
Text field missing carriage returns
in
Access
maybe create a Function in a Module: Public Function FixCrLf$(Byval sText$) sText = Replace$(sText,Chr$(13), Chr$(13) & Chr$(10)) sText =...
see more
12 replies | 115 view(s)
Yesterday,
05:47 PM
GraeagleBill
replied to a thread
Bringing controls to the front during runtime
in
Programming
Okay, the text box does indeed have the focus, so the short answer is that one cannot do what I was attempting. Not a big deal, I'll just let the...
see more
2 replies | 48 view(s)
Yesterday,
05:21 PM
CJ_London
replied to a thread
Bringing controls to the front during runtime
in
Programming
Not clear what the requirement is - buttons to appear on top of the textbox? If so, whatever control has the focus will be on top. If that is the...
see more
2 replies | 48 view(s)
Yesterday,
04:21 PM
GraeagleBill
started a thread
Bringing controls to the front during runtime
in
Programming
I can't seem to find the control property that will bring a control to the front at runtime. The code below is wanting the three command buttons to...
see more
2 replies | 48 view(s)
Yesterday,
03:27 PM
CJ_London
replied to a thread
Text field missing carriage returns
in
Access
Good spot 😀
see more
12 replies | 115 view(s)
Yesterday,
03:27 PM
Welshgasman
replied to a thread
Text field missing carriage returns
in
Access
* is 42, where is the rest?
see more
12 replies | 115 view(s)
Yesterday,
03:07 PM
Micron
replied to a thread
Text field missing carriage returns
in
Access
Except your code uses dash as a separator but the results show = sign?
see more
12 replies | 115 view(s)
Yesterday,
02:33 PM
CJ_London
replied to a thread
Text field missing carriage returns
in
Access
It would if they used the maxchars parameter of 6 OP should really show the code they used
see more
12 replies | 115 view(s)
Yesterday,
01:52 PM
jlindquist23
replied to a thread
Text field missing carriage returns
in
Access
I'm using this in my query: Setup Instructions: Replace(Replace(,Chr(13),Chr(13) & Chr(10)),Chr(10),Chr(13) & Chr(10)) Can Grow and Can Shrink are...
see more
12 replies | 115 view(s)
Yesterday,
11:11 AM
Welshgasman
replied to a thread
Open form with text box blank
in
Access
If you referred to a column in the combo by the control, surely that would be empty as well?
see more
7 replies | 138 view(s)
Yesterday,
11:08 AM
Welshgasman
replied to a thread
Text field missing carriage returns
in
Access
I cannot see how that function produced that output? :(
see more
12 replies | 115 view(s)
Yesterday,
10:56 AM
Ken Sheridan
replied to a thread
Open form with text box blank
in
Access
I would suggest that you base the form on a query which references the unbound combo box, in the form header section, as a parameter on the PartName...
see more
7 replies | 138 view(s)
Yesterday,
10:38 AM
jlindquist23
replied to a thread
Text field missing carriage returns
in
Access
Adding to Word: Using the function with a control in the report, the output is:
see more
12 replies | 115 view(s)
Yesterday,
10:24 AM
madpiet
replied to a thread
Do not display column when total is zeo
in
Access
This is where I like to resort to Excel. (Yeah, I know!) but I can do an unpivot in PowerQuery and it's done.
see more
9 replies | 122 view(s)
Yesterday,
10:21 AM
Ken Sheridan
replied to a thread
Do not display column when total is zeo
in
Access
Unfortunately, by having multiple columns for the branches, your table is 'encoding data as column headings'. A fundamental principle of the...
see more
9 replies | 122 view(s)
Yesterday,
09:49 AM
CJ_London
replied to a thread
Text field missing carriage returns
in
Access
pass your string to this function and see results in the immediate window Function AscChar(s As String, Optional startpos As Long = 1, Optional...
see more
12 replies | 115 view(s)
Yesterday,
09:46 AM
Micron
replied to a thread
Text field missing carriage returns
in
Access
To find out what those characters are, you might need to paste the original content into Word. I think it's Show/Hide in the paragraph group on the...
see more
12 replies | 115 view(s)
Yesterday,
09:25 AM
Welshgasman
replied to a thread
Text field missing carriage returns
in
Access
I would look to see what characters are meant to be the linefeed/carriage return. Then replace those with vbCrLf
see more
12 replies | 115 view(s)
Yesterday,
08:42 AM
jlindquist23
started a thread
Text field missing carriage returns
in
Access
I'm pulling data from an ODBC table in Sage 100. When the data is viewed in a report in Access, all the carriage returns are ignored and all the...
see more
12 replies | 115 view(s)
Yesterday,
07:59 AM
mike60smart
replied to a thread
Do not display column when total is zeo
in
Access
In my example database you would need to run the "qryAllFields_Crosstab" to show the desired output. To get the Totals for each Column you would...
see more
9 replies | 122 view(s)
Yesterday,
06:39 AM
mike60smart
replied to a thread
Do not display column when total is zeo
in
Access
Hi Vinay Attached is an example of how you should construct your tables.
see more
9 replies | 122 view(s)
More Activity
No More Results
No Recent Activity