How to get list (dictionary) count ?

Hi all,

I have a list and the count of this list is 15 once i try to use count isn't return 15 it returns 1 also I tried to use a!flatten but the same issues 

any advice ?

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to venkat Avuluri

    You're right and wrong.  len() finds character length of a string.  But your original suggestion, length(), does find the length of an array, excluding null entries.  count() finds the length including nulls.

    But in the case here, my main suspicion is that OP doesn't know how to parse his dicitonary result to call length() / count() on the correct thing, and isn't sharing very detailed code, meaning others here trying to help him are having a hard time.

Children