How to count number of issues that exist which have text in a property field?

Hi @kevinwhite-verint ,
Can you please share the measure you have created based on that community article?
Your measure should look like this. Measure “Issues created” is needed to define that the issue exists, if it has a creation date, it has been created:

NonZero(
  Count(
    Filter(Descendants([Issue].CurrentMember,[Issue].[Issue]),
     NOT IsEmpty([Measures].[Issue YOUR TEXT FIELD PROPERTY] AND
      --measure to add context of the report
      [Measures].[Issues created] > 0 )
    )  
  )
)

See more details in my colleague Zane answer here:

Kind regards,
Gerda