0

How can I have a formula that counts records from a table?

Hi,

  how ca I have a formula field that counts records in a column matching a string from a table?

Thanks,

Francesco

4 replies

null
    • Nick
    • 4 yrs ago
    • Reported - view

    Something like this

     

    let p := 'Your String';
    cnt(select TableName where 'Your String' = p)

    • francesco
    • 4 yrs ago
    • Reported - view

    It works.

    Thanks,

    Francesco

    • davidvoelker
    • 2 yrs ago
    • Reported - view

    Hi, I did not quite get it: what is p in this respect? I mean You want to test the match of a table entry and a given string. What does where 'Your String'=p mean 

    Thanx in advance

    • Fred
    • 2 yrs ago
    • Reported - view

    p is a variable to store the data that you are looking for. In the second line it should read

     

    cnt(select [Table Name] where [field name] = p) <-- replacing Table Name and Field Name with your specific info. 

    you can skip the first line and just go with

     

    cnt(select [Table Name] where [field name] = "search string")

     

    if you are only searching for one thing.

Content aside

  • 2 yrs agoLast active
  • 4Replies
  • 937Views