Solved Group by (1 Viewer)

Anetal

New member
Local time
Today, 07:32
Joined
Jan 4, 2021
Messages
10
I have a problem. I have two identical ids which should merge into one when using a query with group by. Unfortunately it does not work. How to remove invisible characters in an access file and make them fold?
 

arnelgp

..forever waiting... waiting for jellybean!
Local time
Today, 13:32
Joined
May 7, 2009
Messages
19,226
create this query and run:

update tabelka set [claim number]=replace(replace([claim number], chr(10),""), chr(13), "")

now run your Total query.

or in VBA, immediate window:

currentdb.Execute "update tabelka set [claim number]=replace(replace([claim number], chr(10),''), chr(13), '')
 

Users who are viewing this thread

Top Bottom