-
WSMS_fan
AskWoody LoungerThanks a million. I just found out that our Access install was Customized, so some features does not included. They will reinstall MS Office now. Good Day and thanks again
-
WSMS_fan
AskWoody LoungerTHANKS it does work!!!
-
WSMS_fan
AskWoody LoungerTHANKS it does work!!!
-
WSMS_fan
AskWoody LoungerI would love to but impossible task.
There is Excel file that gets modified and I am pulling datat from this file and it is Text.
Data is very abnormal as user gets to it easily, so I have to do it as simple as possible. all fields are text.
Thanks -
WSMS_fan
AskWoody LoungerI would love to but impossible task.
There is Excel file that gets modified and I am pulling datat from this file and it is Text.
Data is very abnormal as user gets to it easily, so I have to do it as simple as possible. all fields are text.
Thanks -
WSMS_fan
AskWoody LoungerCan you please scren shot last 2 fields? Those are the problemed 2. I will have to show it to ppl to make them reinstall my Access.
THANKS so much, HansV
-
WSMS_fan
AskWoody LoungerCan you please scren shot last 2 fields? Those are the problemed 2. I will have to show it to ppl to make them reinstall my Access.
THANKS so much, HansV
-
WSMS_fan
AskWoody LoungerHi!
Trying to send mdb. Open form and insert 37988 in search. Click Search button
Thanks a lot -
WSMS_fan
AskWoody LoungerHi!
Trying to send mdb. Open form and insert 37988 in search. Click Search button
Thanks a lot -
WSMS_fan
AskWoody LoungerI’ve tried and it crashed.
Should I be yelling to reinstall my Access?
As far as I know there is a lady next to me who CAN import Excel into Acess. Does this mean it is corrupted on my PC?
I’ve tried another one of my team-mate and it crashed. -
WSMS_fan
AskWoody LoungerI’ve tried and it crashed.
Should I be yelling to reinstall my Access?
As far as I know there is a lady next to me who CAN import Excel into Acess. Does this mean it is corrupted on my PC?
I’ve tried another one of my team-mate and it crashed. -
WSMS_fan
AskWoody LoungerHi
I edited my post. The error I am getting at line DoCmd.RunSQL mSQL is “Datatype mismatch in criteria expression”
So my code can not insert those fields Pay Date, Amount Charged and manual Check.
All of those are mapped exactly as in master-data-charges. Text, Number, NumberWithout those fields I were able to insert.
THANKS -
WSMS_fan
AskWoody LoungerHi
I edited my post. The error I am getting at line DoCmd.RunSQL mSQL is “Datatype mismatch in criteria expression”
So my code can not insert those fields Pay Date, Amount Charged and manual Check.
All of those are mapped exactly as in master-data-charges. Text, Number, NumberWithout those fields I were able to insert.
THANKS -
WSMS_fan
AskWoody LoungerEdited by HansV to present data in table form – see post 164109
Hi!
Here is another problem I am dealing with.
I am running code
Private Sub cmd_Search_Click()Dim mSQL As String, ListSQL As String, StrRS As String, txtStr As String
Set dbR = CurrentDb()
DoCmd.SetWarnings FalsedbR.Execute “Delete from Search_Result”
mSQL = “INSERT INTO Search_Result” _
& “([Pay date],[EC Member], [Supervisor], [Last Name],[First Name], [Business Unit],” _
& “[Cost Center], [Amount Charged], [Manual Check Date])” _
& “SELECT [master-data-charges].[Pay date],[master-data-charges].[EC Member],” _
& “[master-data-charges].[Supervisor], [master-data-charges].[Last Name],” _
& “[master-data-charges].[First Name], [master-data-charges].[Business Unit],” _
& “[master-data-charges].[Cost Center], [master-data-charges].[Amount Charged],” _
& “[master-data-charges].[Manual Check Date]” _
& “FROM [master-data-charges] WHERE” _
& “[master-data-charges].[Pay date]=([Forms]![frm_Find_User]![txt_Search])” _
& “or [master-data-charges].[EC Member]=([Forms]![frm_Find_User]![txt_Search])” _
& “or [master-data-charges].[Supervisor]=([Forms]![frm_Find_User]![txt_Search])” _
& “or [master-data-charges].[Last Name] = ([Forms]![frm_Find_User]![txt_Search])” _
& “or [master-data-charges].[First Name]=([Forms]![frm_Find_User]![txt_Search])” _
& “or [master-data-charges].[Business Unit]=([Forms]![frm_Find_User]![txt_Search])” _
& “or [master-data-charges].[Cost Center]=([Forms]![frm_Find_User]![txt_Search])” _
& “or [master-data-charges].[Amount Charged]=([Forms]![frm_Find_User]![txt_Search])” _
& “or [master-data-charges].[Manual Check Date] = ([Forms]![frm_Find_User]![txt_Search]);”
DoCmd.RunSQL mSQL‘———————————————————
Set rsResp = dbR.OpenRecordset(“Search_Result”, dbOpenTable)
On Error Resume Next
txtStr = rsResp![Last Name]
If txtStr = “” Then
MsgBox “Search Produced No Results! Please, try again!”
End If
‘———————————————————List_Result.RowSource = “Select [EC Member], [Supervisor], [Last Name],[First Name], [Business Unit], [Cost Center] from Search_Result”
End Sub
When I run this code my table gets populated like this
Pay date EC Member Supervisor Last Name First Name Bunit Cost Center Amount Charged Manual Check Date -
WSMS_fan
AskWoody LoungerEdited by HansV to present data in table form – see post 164109
Hi!
Here is another problem I am dealing with.
I am running code
Private Sub cmd_Search_Click()Dim mSQL As String, ListSQL As String, StrRS As String, txtStr As String
Set dbR = CurrentDb()
DoCmd.SetWarnings FalsedbR.Execute “Delete from Search_Result”
mSQL = “INSERT INTO Search_Result” _
& “([Pay date],[EC Member], [Supervisor], [Last Name],[First Name], [Business Unit],” _
& “[Cost Center], [Amount Charged], [Manual Check Date])” _
& “SELECT [master-data-charges].[Pay date],[master-data-charges].[EC Member],” _
& “[master-data-charges].[Supervisor], [master-data-charges].[Last Name],” _
& “[master-data-charges].[First Name], [master-data-charges].[Business Unit],” _
& “[master-data-charges].[Cost Center], [master-data-charges].[Amount Charged],” _
& “[master-data-charges].[Manual Check Date]” _
& “FROM [master-data-charges] WHERE” _
& “[master-data-charges].[Pay date]=([Forms]![frm_Find_User]![txt_Search])” _
& “or [master-data-charges].[EC Member]=([Forms]![frm_Find_User]![txt_Search])” _
& “or [master-data-charges].[Supervisor]=([Forms]![frm_Find_User]![txt_Search])” _
& “or [master-data-charges].[Last Name] = ([Forms]![frm_Find_User]![txt_Search])” _
& “or [master-data-charges].[First Name]=([Forms]![frm_Find_User]![txt_Search])” _
& “or [master-data-charges].[Business Unit]=([Forms]![frm_Find_User]![txt_Search])” _
& “or [master-data-charges].[Cost Center]=([Forms]![frm_Find_User]![txt_Search])” _
& “or [master-data-charges].[Amount Charged]=([Forms]![frm_Find_User]![txt_Search])” _
& “or [master-data-charges].[Manual Check Date] = ([Forms]![frm_Find_User]![txt_Search]);”
DoCmd.RunSQL mSQL‘———————————————————
Set rsResp = dbR.OpenRecordset(“Search_Result”, dbOpenTable)
On Error Resume Next
txtStr = rsResp![Last Name]
If txtStr = “” Then
MsgBox “Search Produced No Results! Please, try again!”
End If
‘———————————————————List_Result.RowSource = “Select [EC Member], [Supervisor], [Last Name],[First Name], [Business Unit], [Cost Center] from Search_Result”
End Sub
When I run this code my table gets populated like this
Pay date EC Member Supervisor Last Name First Name Bunit Cost Center Amount Charged Manual Check Date
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
Windows 11 Insider Preview build 26200.5651 released to DEV
by
joep517
3 hours, 43 minutes ago -
Windows 11 Insider Preview build 26120.4441 (24H2) released to BETA
by
joep517
3 hours, 45 minutes ago -
iOS 26,, MacOS 26 : Create your own AI chatbot
by
Alex5723
7 hours, 40 minutes ago -
New PC transfer program recommendations?
by
DaveBoston
2 hours ago -
Windows 11 Insider Preview Build 22631.5545 (23H2) released to Release Preview
by
joep517
11 hours, 44 minutes ago -
Windows 10 Build 19045.6029 (22H2) to Release Preview Channel
by
joep517
11 hours, 46 minutes ago -
Best tools for upgrading a Windows 10 to an 11
by
Susan Bradley
5 minutes ago -
The end of Windows 10 is approaching, consider Linux and LibreOffice
by
Alex5723
6 hours, 1 minute ago -
Extended Windows Built-in Disk Cleanup Utility
by
bbearren
9 hours, 55 minutes ago -
Win 11 24H2 June 2025 Update breaks WIFI
by
dportenlanger
1 day, 6 hours ago -
Update from WinPro 10 v. 1511 on T460p?
by
CatoRenasci
4 hours, 38 minutes ago -
System Restore and Updates Paused
by
veteran
1 day, 9 hours ago -
Windows 10/11 clock app
by
Kathy Stevens
20 hours, 21 minutes ago -
Turn off right-click draw
by
Charles Billow
1 day, 12 hours ago -
Introducing ChromeOS M137 to The Stable Channel
by
Alex5723
1 day, 16 hours ago -
Brian Wilson (The Beach Boys) R.I.P
by
Alex5723
9 hours, 53 minutes ago -
Master patch listing for June 10, 2025
by
Susan Bradley
1 day, 17 hours ago -
Suggestions for New All in One Printer and a Photo Printer Windows 10
by
Win7and10
20 hours, 30 minutes ago -
Purchasing New Printer. Uninstall old Printer Software First?
by
Win7and10
1 day, 23 hours ago -
KB5060842 Issue (Minor)
by
AC641
11 hours, 44 minutes ago -
EchoLeak : Zero Click M365 Copilot leak sensitive information
by
Alex5723
2 days, 6 hours ago -
24H2 may not be offered June updates
by
Susan Bradley
23 hours, 20 minutes ago -
Acronis : Tracking Chaos RAT’s evolution (Windows, Linux)
by
Alex5723
2 days, 19 hours ago -
June 2025 updates are out
by
Susan Bradley
44 minutes ago -
Mozilla shutting Deep Fake Detector
by
Alex5723
3 days, 10 hours ago -
Windows-Maintenance-Tool (.bat)
by
Alex5723
2 days, 19 hours ago -
Windows 11 Insider Preview build 26200.5641 released to DEV
by
joep517
3 days, 12 hours ago -
Windows 11 Insider Preview build 26120.4250 (24H2) released to BETA
by
joep517
3 days, 12 hours ago -
Install Office 365 Outlook classic on new Win11 machine
by
WSrcull999
3 days, 12 hours ago -
win 10 to win 11 with cpu/mb replacement
by
aquatarkus
3 days, 4 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.