How to extract 40 "If CY < 40% of Avg" from this string

sgnarkhede2016sgnarkhede2016 MemberPosts:152Contributor II
How to extract 40 "If CY < 40% of Avg" from this string

Answers

  • VanlalVanlal MemberPosts:12Contributor II
    Set Macro str = "If CY < 40% of Avg"
    Then use this function for getting any number
    trim(replaceAll(%{str},"[^0-9]",""))
    sgnarkhede2016
Sign InorRegisterto comment.