Comments

1 comment

  • Avatar
    Kevin Keech

    You can first parse the value 

    | parse "\"score:*\"" as score

    If you want to then display where that score value is within a range you can add a where condition after the parsing.

    | parse "\"score:*\"" as score
    | where (score >= 1 and score <= 100)

     

     

    0
    Comment actions Permalink

Please sign in to leave a comment.