G
Guest
I am trying to remove the leading blanks in a text field. Got any good
ideas?
Thanks
ideas?
Thanks
Brendan Reynolds said:An update query using the LTrim function ...
UPDATE YourTableNameHere SET YourFieldNameHere = LTrim([YourFieldNameHere])
WHERE YourFieldNameHere Is Not Null
--
Brendan Reynolds (MVP)
BreLee said:I am trying to remove the leading blanks in a text field. Got any good
ideas?
Thanks
Brendan Reynolds said:An update query using the LTrim function ...
UPDATE YourTableNameHere SET YourFieldNameHere = LTrim([YourFieldNameHere])
WHERE YourFieldNameHere Is Not Null
--
Brendan Reynolds (MVP)
BreLee said:I am trying to remove the leading blanks in a text field. Got any good
ideas?
Thanks