Hello everyone! I am currently navigating and learning how to calculate and use specific commands. I am currently trying to add new columns to a table where I want to add the average of ghost% and missing% based on a location. However, it shows empty cells. Also, I want to show the values eventually in a chart in percentages and not decimals. Can anyone guide me in what is wrong with this query? Thank you! chart count by AREAID event | | eval Ghost=max(0,Ghost-Missing) | eval "Ghost %"=Ghost/TotalTubs*100,"Missing %"=Missing/TotalTubs*100 | fields AREAID "Missing" "Ghost" "Missing %" "Ghost %" | stats avg(Missing) as avg_missing, avg(Ghost) as avg_ghost, by AREAIDsum(TotalTubs) as total_tubs by AREAID | eval "Average Missing %"=avg_missing/total_tubs*100, "Average Ghost %"=avg_ghost/total_tubs*100 | table AREAID avg_missing avg_ghost total_tubs "Average Missing %" "Average Ghost %" | fields "AREAID", "Average Ghost %", "Average Missing %", "Ghost %", "Missing %", "total_tubs"
... View more