I'm trying build a bar chart from an asset list that shows by bunit what percentage of a field called **last** has a value in it.
I used `isnotnull` to create a field with yes/no values, but I'm not sure how to show the percentage.
| inputlookup my_assets.csv | eval percentage=if(isnotnull(last),"yes","no")
↧