Forum Discussion
QuickBaseCoachD
10 years agoQrew Captain
Try this. I will use formula variables to break the formula into smaller pieces.
var text Temp = Left([my text field],"x");
Length($Temp) +1
var text Temp = Left([my text field],"x");
Length($Temp) +1
QuickBaseCoachD
8 years agoQrew Captain
did you try this
var text Temp = Left([my text field],"#%");
var number StartPosition = Length($Temp) +1;
Mid([field], $StartPosition, 5)
var text Temp = Left([my text field],"#%");
var number StartPosition = Length($Temp) +1;
Mid([field], $StartPosition, 5)