I have a table that looks like the following:
Endpoint ------- Application -------- Count
A ------------------ app1 ------------------ 1
A ------------------ app2 ------------------ 5
A ------------------ app3 ------------------ 10
B ------------------ app1 ------------------ 15
B ------------------ app2 ------------------ 20
I would like to transform this into a table like this:
Endpoint -------- app1 -------- app2 -------- app3
A ------------------ 1 --------------- 5 ------------ 10
B ------------------ 15 ------------- 20
Is this possible?
Replace whatever is at the end of your search with this:
| contingency Endpoint Application
Bam!
Replace whatever is at the end of your search with this:
| contingency Endpoint Application
Bam!
This worked perfectly! Thanks!