I have been able to use find/replace on a field in a table but unable to execute it in a query, any ideas or suggestions?
Example in table find/replace that works
Field contents: <CatchWeight><CatchWeight>37.78</CatchWeight><CatchWeight>33.74</CatchWeight><CatchWeight RejectedIndicator="true">33.36
Find What: <CatchWeight>##.##</CatchWeight>
Replace with 1 Space
Results: space space <CatchWeight RejectedIndicator="true">33.36
Query field: T1: Replace([catchweights],"<CatchWeight>##.##</CatchWeight>"," ")
Query fails to convert
Example in table find/replace that works
Field contents: <CatchWeight><CatchWeight>37.78</CatchWeight><CatchWeight>33.74</CatchWeight><CatchWeight RejectedIndicator="true">33.36
Find What: <CatchWeight>##.##</CatchWeight>
Replace with 1 Space
Results: space space <CatchWeight RejectedIndicator="true">33.36
Query field: T1: Replace([catchweights],"<CatchWeight>##.##</CatchWeight>"," ")
Query fails to convert