Importing from Excel

kparadise

Board Regular
Joined
Aug 13, 2015
Messages
186
Hello,

I have an excel sheet with two tabs. I also have an access database.

Excel [Tab 1] is a listing of manually entered items (ID, Type, Assigned To, Objective, Status, Name, etc.). Excel [Tab 2] simply is a reference table from [Tab 1]; and has some formulas related to [Tab 1]. [Tab 2] was built to be imported into my access file, and only holds the pertinent info we need (only 5 columns).

Two of the columns in [Tab 2] have an IF formula as such. =IF(Tab1!A5="","",Tab1!A5) and =IF(Tab1!D5="","",Tab1!D5). So, basically if there is no value in [Tab 1], it just shows as a blank in [Tab 2]. This works all well in excel with no issues; it is when I import this file into access is my issue.

When I run the SavedImport Command in Access...I am getting a Type Conversion Error on those rows where I have a blank in my [Tab 2]. One field is a date, on field is a text field. Does this make sense? How do I fix it.
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
Is it possible that Access defines the fields as required ? I'm no expert in Access by the way
 
Upvote 0
Yes, I think the issue is with your Date/Time field.

It is important to understand how Excel and Access store dates & times. They store them as numbers, specifically the number of days since 1/0/1900 (so time is a fraction, as it is "part" of one day).
I believe that "" will be interpretted as a Text entry, and you cannot have Text entries in Numeric or Date/Time fields.
So I think that is where you issue is occurring.

It should be easy to check/confirm this. Try importing a file that does not have any "blanks" in the data records for this field, and see if it works.
 
Last edited:
Upvote 0
Maybe update your formula so that it returns 0 (zero) instead of ""?
 
Upvote 0

Forum statistics

Threads
1,214,429
Messages
6,119,424
Members
448,896
Latest member
MadMarty

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top