NQL as()
devices
| summarize total_cost = count() * 2000
| list total_cost.as(format = currency, code = USD)
Formatter
Unit
Example query
Last updated
Was this helpful?
devices
| summarize total_cost = count() * 2000
| list total_cost.as(format = currency, code = USD)
Last updated
Was this helpful?
Was this helpful?
device_performance.events during past 1d
| where device.operating_system.platform = macos
| where hardware.type == laptop
| summarize estimated_energy = ((8 * 0.070) * device.count())
| list estimated_energy.as( format = energy )devices
| where hardware.type = laptop or hardware.type = desktop
| summarize no_of_devices = (count()^1) * 422.5
| list no_of_devices.as( format = weight )devices
| summarize total_cost = count() * 2000
| list total_cost.as(format = currency, code = USD)devices
| summarize total_cost = count() * 2000
| list total_cost.as(format = currency, code = EUR)devices
| with execution.crashes
| summarize impacted_devices = countif(operating_system.name == "Windows 10 Pro 22H2 (66 bits)")/count()
| list impacted_devices.as(format = percent)connectivity.events during past 30d
| where primary_physical_adapter.type == wifi
| where wifi.signal_strength.avg <= -67 or (context.device_platform == "macOD" and wifi.noise_level.avg >= -80)
| summarize average_receive_rate = wifi.receive_rate.avg()
| list average_receive_rate.as(format = bitrate)