Hi,
First of all, my level of VBA knowledge is hacking together things I find on the internet, so I apolgise if this is a stupid question.
I have the following table (made up details, but same format):
I want to turn it into something that looks like this:
Basically I want a way to concatenate based on the date, which could change depending the data coming through (so it could be 20 entries with 5 different dates). Looking online, it seems you have to statically define what you want to be concatenate in VBA., I was wondering if there was a way you could do it dynamically, where it wouldn't matter how long the data is and where you could filter it by date.
Thanks
First of all, my level of VBA knowledge is hacking together things I find on the internet, so I apolgise if this is a stupid question.
I have the following table (made up details, but same format):
Server | Patch No | Date |
---|---|---|
Server 1 | 1 | 27/04/22 |
Server 1 | 2 | 27/04/22 |
Server 1 | 3 | 27/04/22 |
Server 1 | 4 | 25/04/22 |
I want to turn it into something that looks like this:
Server | Patch Nos | Date |
---|---|---|
Server 1 | 1, 2, 3 | 27/04/22 |
Server 1 | 4 | 25/04/22 |
Basically I want a way to concatenate based on the date, which could change depending the data coming through (so it could be 20 entries with 5 different dates). Looking online, it seems you have to statically define what you want to be concatenate in VBA., I was wondering if there was a way you could do it dynamically, where it wouldn't matter how long the data is and where you could filter it by date.
Thanks