I have an exported table from a query that contains two fields (AppNumber and Folio). Each application can contain one or many folios, the problem is that the folio data has been entered using comma separators if more than one occurred (and there is no real limit to how many folio numbers there can be). They are both text fields and the following shows typical samples.
AppNumber Folio
05-0001 78912.0000
05-0002 12345.0000, 12345.0100, 45678.0000
05-0003 45612.0000
For the purposes of another application that will use this data I need to format the data like the following.
AppNumber Folio
05-0001 78912.0000
05-0002 12345.0000
05-0002 12345.0100
05-0002 45678.0000
05-0003 45612.0000
Thanks in advance for any help you can offer.
AppNumber Folio
05-0001 78912.0000
05-0002 12345.0000, 12345.0100, 45678.0000
05-0003 45612.0000
For the purposes of another application that will use this data I need to format the data like the following.
AppNumber Folio
05-0001 78912.0000
05-0002 12345.0000
05-0002 12345.0100
05-0002 45678.0000
05-0003 45612.0000
Thanks in advance for any help you can offer.