Hi there,
This may be a easy question, but I am an Access beginner and not very good at vba.
right now I have the data in the following format:
I want to split up the Status into 3 columns
I very much appreciate whoever can give me some advice. Thank you very much
This may be a easy question, but I am an Access beginner and not very good at vba.
right now I have the data in the following format:
Code:
[U][B]ASSET HOLDING STATUS AMOT[/B][/U] asset1 1 EGL 5 asset1 1 UGL 6 asset1 1 FVA 7 asset1 4 EGL 8 asset1 4 UGL 9 asset1 4 FVA 10 asset2 5 EGL 11 asset2 5 UGL 12 asset2 5 FVA 13
Code:
[U][B]ASSET HOLDING EGL UGL FVA[/B][/U] asset1 1 5 6 7 asset1 4 8 9 10 asset2 5 11 12 13
Comment