I have 30K of rows similar to this:
| Name | UID | Field1 | Field2 | Field3 |
| hostname 1 | blah1 | x | | |
| hostname 1 | blah1 | | x | |
| hostname 1 | blah1 | | | x |
| hostname 2 | blah2 | | x | |
| hostname 2 | blah2 | x | | |
| hostname 2 | blah2 | | | |
| hostname 3 | blah3 | | | x |
| hostname 3 | blah3 | | x | |
| hostname 3 | blah3 | x | | |
What I need to do is have the data end up like this:
| hostname 1 | blah1 | x | x | x |
| hostname 2 | blah2 | x | x | o |
| hostname 3 | blah3 | x | x | x |
I don't seem to be getting anywhere, either with Summary, or Multi-Row Formula, etc. I KNOW this should be easy, but the solution just isn't coming to me.
Help?!?