Hello,
I need to delete an amount off the end of a field. The amount deleted is variable. So I could have :
description 0.01
description 0.101
description 0.1001
etc.
It is always going to be 0.**** ( although on rare occasions it maybe 1.*****)- it will always have the . in it though.
I need to be left with just description.
I have the following working :
desc = left(desc, len(desc) - 4)
the problem there is it is set to 4 digits and I need it variable - any ideas would be appreciated.
Thanks
I need to delete an amount off the end of a field. The amount deleted is variable. So I could have :
description 0.01
description 0.101
description 0.1001
etc.
It is always going to be 0.**** ( although on rare occasions it maybe 1.*****)- it will always have the . in it though.
I need to be left with just description.
I have the following working :
desc = left(desc, len(desc) - 4)
the problem there is it is set to 4 digits and I need it variable - any ideas would be appreciated.
Thanks