I have a field (DATA type Float)with seven digits in it. I want to filter out the first three digits. I am using the following expression.
LEFT (dbo.A_CombinedDeposits.ACCTNO, 3) it gives me the following
6007862 ------ 6.0
7006823 ------- 7.0
I do not know why it is adding decimal point to it and counting it as a digit.
Thanks
Dwight
LEFT (dbo.A_CombinedDeposits.ACCTNO, 3) it gives me the following
6007862 ------ 6.0
7006823 ------- 7.0
I do not know why it is adding decimal point to it and counting it as a digit.
Thanks
Dwight