JMP Add-in did a great job importing hundreds of MSWord documents into a table.
I have a column called "comment (original)" that I wish to count the number of "no comment" phrases.
When I use the formula,
N Rows(
Loc(
Words( :"comment (white space collapsed)"n, " " ),
"comments"
)
)
it returns the number of occurrences for the term "comments". However, the Loc function will not accept "no comments" as an argument.
N Rows(
Loc(
Words( :"comment (white space collapsed)"n, " " ),
"comments"
)
)
JMP v17.1
Interestingly, the formula works correctly if the comment column was recoded to collapse whitespace. Not sure why.
Any thoughts or assistance would be appreciated!
Thank you.