Again, without seeing sample data it's very difficult to determine why the search is not matching the data. Try using quotes in the eval command |eval DeviceType=case(Device="IPAD", "Macs", Device=...
See more...
Again, without seeing sample data it's very difficult to determine why the search is not matching the data. Try using quotes in the eval command |eval DeviceType=case(Device="IPAD", "Macs", Device="Laptop", "Windows") or use the match function to match an embedded string |eval DeviceType=case(match(Device, "IPAD"), "Macs", match(Device, "Laptop"), "Windows")