Substring(sales_amt, 9)
Similar to your other thread if it's always "AMOUNT: " then use replace. If you must use 3 replaces, one for "AMOUNT:" one for "$" and one for all spaces.
SUBSTRING(ACTIVE.NOTE, CHARINDEX('$', ACTIVE.NOTE) + 1, LEN(ACTIVE.NOTE)) AS Test
what a pain the ass. I can't believe they don't have something like RPARSE(ACTIVE.NOTE.'my choice of characeters>) built in.
Similar to your other thread if it's always "AMOUNT: " then use replace. If you must use 3 replaces, one for "AMOUNT:" one for "$" and one for all spaces.