Hello everyone,
I have a tons of rows of data that looks like this:
| City | Town | Name | Value |
| Boston | Cambridge | Database 1 | Apple |
| Boston | Cambridge | Database 1 Type | Sql |
| Boston | Cambridge | Database 1 URL | high |
| Boston | Cambridge | Database 1 Server 1 FQDN | ft123yee |
| Boston | Cambridge | Database 2 | Orange |
| Boston | Cambridge | Database 2 Type | Oracle |
| Boston | Cambridge | Database 2 URL | low |
| Boston | Cambridge | Database 2 Server 1 FQDN | ash67qweu |
| NY | Rochester | Database 1 | Banana |
| NY | Rochester | Database 1 Type | Sql |
| NY | Rochester | Database 1 URL | medium |
| NY | Rochester | Database 1 Server 1 FQDN | 123hasd98 |
I need to arrange the data in such a way that it lines perfectly based on City and Asset. So basically if it's the same city and sametown and want anything that has number after database, it should place it in different column as Database. Similarly, All the database type should be in the new column for database type and so on.
The output should look like this:
| City | Town | Database | Database Type | site | FQDN |
| Boston | Cambridge | Apple | Sql | high | ft123yee |
| Boston | Cambridge | Orange | Oracle | low | ash67qweu |
| NY | Rochester | Banana | Sql | medium | 123hasd98 |
Anyone knows how to do this? Thanks in advance!!