In one instance, I had a column of monetary data that ranged from $0 to several 10’s of million where the numbers were formatted with thousands comma separators. In this instance DataGraph would not recognize the column as a number. As I recall, the number from text would not work because the values ranged so much in magnitude that it was not possible to formulate a single conversion method.
The latest instance I ran across, I had collected weight data where the column text was expressed as either “x oz ( y g )” or “x1-x2 oz ( y1-y2 g)”. Perhaps the number from text would work here, but regex formulations is a very familiar and versatile standard for people that regularly parse text.
What would be useful would be to incorporate regex in the current formula expression since multiple capture groups can be identified in a single text. In the above weight example, I would liked to have converted the entries that had a range into a single mean value by capturing the min and max and averaging.
Thanks for the response and consideration as a future feature.