Nobody ever said my job would be simple. I have a tab delimited text file that needs to be imported and processed. Unfortunately the file, as received has formatted numbers with commas separating the thousands: 5,916 for example. A straightforward import fails as it won't recognize as a valid number. It is not possible to get the source file changed.
I have a work around that seems to work:
This involves importing it as text, then using a query to take the Value of the field after stripping the comma out. It is cumbersome, but it works.
Question is, am I missing any solution that is simpler?
I have a work around that seems to work:
Code:
[b][COLOR=red]OnHand: IIf(IsNull([Indigo POS Data]![DC OH]),0,Val(Replace([Indigo POS Data]![DC OH],",","")))[/color][/b]
This involves importing it as text, then using a query to take the Value of the field after stripping the comma out. It is cumbersome, but it works.
Question is, am I missing any solution that is simpler?