Ms access Export Specifiction

imfarhan

Board Regular
Joined
Jan 29, 2010
Messages
123
Office Version
  1. 2016
Platform
  1. Windows
Hi All Ms Access Guru

I've been trying to export only 4 coulmns i.e. c1,c2...c4, the last column c4 keep some null values , but I would like to to replace last column value if null = ""
Sam value as TextQualifier

During Export Wizard, (It does show me some output rows sample and in there it show if the Last Column C4 is null replaceing TextQualifier value i.e. ")

I hope it does make sense
Many thanks
Farhan
 

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
Create a query that will show just the four columns, then save the query then add an expression as the fifth column and use an IIF statement to show value if held or 0 (or something else) if no value, like this

Expr1: IIf([Field Name] Is Null,0,[Field Name])


Then create a macro to send to the program you want like Excel (you haven't mentioned where it is to go!)
 
Upvote 0

Forum statistics

Threads
1,214,965
Messages
6,122,499
Members
449,089
Latest member
Raviguru

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