Like so much in statistics, there is seemingly a number of ways to get what you need. sebastianhoffmeister pretty much was on point with his response, and JMP indirectly reports the statistic that you need. As your question title implies, much like the Wilcoxon Rank Sums test itself, the U statistic is named depending on the source. After looking this up before answering your question I found that in the Wikipedia entry, which is for the Mann-Whitney U test, it is the U statistic. In a statistics textbook I have here in my cube (Ott and Longnecker, 5th ed.) it is referred to as the T statistic, but an example in the chapter on the Wilcoxon test has an example from Minitab where it is explicitly stated that the "test statistic W… is identical to the Wilcoxon T."
In JMP the Wilcoxon statistic is S that, according to JMP help, is the sum of rank scores. S is not U/W/T, but appears to be the greater of the score sums; note in sebastianhoffmeister's screenshot S = 429.5, the score sum of level m. the U statistics can be computed from the score sums, s1 and s2. If you refer to the Wiki entry, you will find that in sebastianhoffmeister's example, U1 = 50.5 and U2 = 309.5. According to the Wikipedia entry, U1 should be chosen, meaning the value of S would be 350.5, but JMP chooses the larger U statistic that also happens to be the larger score sum.
What I see in Ott and Longnecker does not indicate that either process is incorrect. The process for the Wilcoxon test according to that text is:
- List the data values for both samples from smallest to largest.
- Assign the numbers 1 to N to the data values with 1 to the smallest value and N to the largest value. These are the ranks of the observations.
- If there are ties—that is, duplicated values—in the combined data set, the ranks for the observations in a tie are taken to be the average of the ranks for those observations.
- Let T denote the sum of the ranks for the observations from Population 1.
The process does not set any requirement for which of the populations constitutes Population 1.
Another text that I have here (Milton and Arnold, 4th ed.), it states, "The test statistic… is the sum of the ranks associated with the observations that originally constituted the smaller sample." When I first learned about the Wilcoxon Rank Sums test grad school so that my research team could publish—getting called out for using a t-test on non-normal data sets during the peer review process for my very first submission was unpleasant to say the least—, I recall the texts that a stat professor loaned me on nonparametric statistics also mentioning that the score sums from the population with the smaller sample size should be used. This is what JMP also appears to be doing.