I have been reading on the Split function within Access, but having a hard time fully grasping how to correctly write it. I have read things like:
www.techonthenet.com
&
In tblJobDetails, I have a field QuoteNum. QuoteNum contains values in a specific format such as Q12345-1. I have been trying to correctly use Split to delimit at "-" and then increase by one. So after a on click, the QuoteNum would become Q12345-2.
What is the correct way to split the QuoteNum into two values as an array then increment only the second portion of the number, then put them back together then set the newly created QuoteNum as the new value?
MS Access: Split Function
This MSAccess tutorial explains how to use the Access Split function with syntax and examples. The Microsoft Access Split function will split a string into substrings based on a delimiter. The result is returned as an array of substrings.
In tblJobDetails, I have a field QuoteNum. QuoteNum contains values in a specific format such as Q12345-1. I have been trying to correctly use Split to delimit at "-" and then increase by one. So after a on click, the QuoteNum would become Q12345-2.
What is the correct way to split the QuoteNum into two values as an array then increment only the second portion of the number, then put them back together then set the newly created QuoteNum as the new value?