0

Is there a way calculation that would count the number of words in another field in the same record?

I tried cnt(FieldName), but that just returns the number of records.

2 replies

null
    • Sean
    • 6 yrs ago
    • Reported - view

    This should do it...

     

    count(splitx(FieldName, "\s"))

    • Peter_Saltzman
    • 6 yrs ago
    • Reported - view

    Awesome! That does it. Thanks, #slowwagon!