EzGoingKev
Registered User.
- Local time
 - Today, 03:22
 
- Joined
 - Nov 8, 2019
 
- Messages
 - 201
 
"Unconcatenating" Data In A Field - Access
Good morning.
I have an Access table with data in two fields -
__F1__|______F2______
Name1 | 47;1295;
Name2 |
Name3 | 1412;1893;1912
Name4 | 14;1492;1812
Name5 | 1247;1298
The names in F1 will always be unique
There might be some overlap in F2.
If found some VBA that gives me a split function that works well but I have to create an expression for each string in F2. The amount can vary from empty to many, many more.
Ideally I would like two fields with all the numbers in this format:
__F1__|__F2__
Name1 | 47
Name1 | 1295
Name2 |
Name3 | 1412
Name3 | 1893
Name3 | 1912
and on for the rest of them.
Is there a way to accomplish my goal that works irregardless of how many strings there are in F2?
 Good morning.
I have an Access table with data in two fields -
__F1__|______F2______
Name1 | 47;1295;
Name2 |
Name3 | 1412;1893;1912
Name4 | 14;1492;1812
Name5 | 1247;1298
The names in F1 will always be unique
There might be some overlap in F2.
If found some VBA that gives me a split function that works well but I have to create an expression for each string in F2. The amount can vary from empty to many, many more.
Ideally I would like two fields with all the numbers in this format:
__F1__|__F2__
Name1 | 47
Name1 | 1295
Name2 |
Name3 | 1412
Name3 | 1893
Name3 | 1912
and on for the rest of them.
Is there a way to accomplish my goal that works irregardless of how many strings there are in F2?
			
				Last edited: