Find and replace #N/A

Teuntja123

Registered User.
Local time
Today, 15:40
Joined
Sep 17, 2013
Messages
21
Hi all,

I've imported a table with 1500 cells with #N/A value,
Adjusting the bron data is not possible, so I have to change the values in Access. (it must be changed into a "Y")
When I filter the column on #N/A and use the Find an Replace function with the following rules:
Find What: #N/A; Replace With: Y
It says the item was not found.

Can someone help me?
 
Try using an update query?

MVG vanuit Amsterdam
 
I can use an update query, but what is to fill in by criteria? #N/A doesn't work..
It would be easier if I know what to fill in the Find What section so it will find/replace #N/A..
 
If you simply use a SELECT Query with the Criteria as #N/A do you get any result?
Code:
SELECT * FROM yourTableName
WHERE theField = "#N/A";
 
I already tried
Find what: "#N/A", #N/A, "N/A", N/A, NA(),
 
You are not listening.. Forget about Find and Replace functionality. Try the SELECT Query or UPDATE query. :rolleyes:
 
Thanks, solved it with the update query! Made a mistake in my previous one.
 

Users who are viewing this thread

Back
Top Bottom