Hi,
In a universe object, I am trying to convert a string to a number if it's all numeric. This is working fine - almost all of the time - using this formula:
DECODE( TRANSLATE(@Select(Class\Field),'_0123456789',' '), NULL, 'number','char')
So I am converting to 'number' or 'char'. If it...