Hi
Since i am new to Arcade , how can i how to add letter k in arcade if value more zero in Arcgis dashboard indicator values
since some values are zero which i dont want to add K in those cases
Thanks
Should be something like this:
var val = $feature.whatever
if (val>0){
val = Text(val) + "k"
}
return val