-
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 ad from Campaign Manager in Windows 10
by
Jim McKenna
13 hours, 39 minutes ago -
Small desktops
by
Susan Bradley
1 hour, 6 minutes ago -
Totally disable Bitlocker
by
CWBillow
8 hours, 31 minutes ago -
Phishers extract Millions from HMRC accounts..
by
Microfix
22 hours, 18 minutes ago -
Windows 10 22H2 Update today (5 June) says up-to-date but last was 2025-04
by
Alan_uk
1 day ago -
Thoughts on Malwarebytes Scam Guard for Mobile?
by
opti1
1 day, 3 hours ago -
Mystical Desktop
by
CWBillow
1 day, 3 hours ago -
Meta and Yandex secretly tracked billions of Android users
by
Alex5723
8 hours, 50 minutes ago -
MS-DEFCON 2: Do you need that update?
by
Susan Bradley
8 minutes ago -
CD/DVD drive is no longer recognized
by
WSCape Sand
1 day, 18 hours ago -
Windows 11 24H2 Default Apps stuck on Edge and Adobe Photoshop
by
MikeBravo
1 day, 21 hours ago -
North Face and Cartier customer data stolen in cyber attacks
by
Alex5723
1 day, 19 hours ago -
What is wrong with simple approach?
by
WSSpoke36
1 day, 12 hours ago -
Microsoft-Backed Builder.ai Set for Bankruptcy After Cash Seized
by
Alex5723
2 days, 7 hours ago -
Location, location, location
by
Susan Bradley
21 hours, 31 minutes ago -
Cannot get a task to run a restore point
by
CWBillow
2 days, 8 hours ago -
Frustrating search behavior with Outlook
by
MrJimPhelps
1 day, 23 hours ago -
June 2025 Office non-Security Updates
by
PKCano
2 days, 19 hours ago -
Secure Boot Update Fails after KB5058405 Installed
by
SteveIT
21 hours, 51 minutes ago -
Firefox Red Panda Fun Stuff
by
Lars220
2 days, 19 hours ago -
How start headers and page numbers on page 3?
by
Davidhs
3 days, 5 hours ago -
Attack on LexisNexis Risk Solutions exposes data on 300k +
by
Nibbled To Death By Ducks
2 days, 8 hours ago -
Windows 11 Insider Preview build 26200.5622 released to DEV
by
joep517
3 days, 14 hours ago -
Windows 11 Insider Preview build 26120.4230 (24H2) released to BETA
by
joep517
3 days, 14 hours ago -
MS Excel 2019 Now Prompts to Back Up With OneDrive
by
lmacri
3 days, 4 hours ago -
Firefox 139
by
Charlie
2 days, 20 hours ago -
Who knows what?
by
Will Fastie
1 day, 22 hours ago -
My top ten underappreciated features in Office
by
Peter Deegan
1 hour, 33 minutes ago -
WAU Manager — It’s your computer, you are in charge!
by
Deanna McElveen
1 day, 8 hours ago -
Misbehaving devices
by
Susan Bradley
2 days, 10 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.