if the query shows results like:
Customer 1 1234 ABC
Customer 2 4567 DEF
Customer 1 1234 GHI
Customer 1 1234 JKL
Customer 1 1234 MNO
The query above could be Select CustomerName, CustomerNo, PurchaseOrd from Table1
If 1234 gets repeated more than once I want to display it as blank. So the data should instead look:
Customer 1 1234 ABC
Customer 2 4567 DEF
Customer 1 1234 GHI
Customer 1 JKL
Customer 1 MNO
How would I do that?
Thanks
Customer 1 1234 ABC
Customer 2 4567 DEF
Customer 1 1234 GHI
Customer 1 1234 JKL
Customer 1 1234 MNO
The query above could be Select CustomerName, CustomerNo, PurchaseOrd from Table1
If 1234 gets repeated more than once I want to display it as blank. So the data should instead look:
Customer 1 1234 ABC
Customer 2 4567 DEF
Customer 1 1234 GHI
Customer 1 JKL
Customer 1 MNO
How would I do that?
Thanks