I have a prompting query to enter a specific AREA or * for all. The backend is Oracle and Area values are entered in Upper case. I want to force the value entered at the prompt to UPPER. The following code does not pull any records. when I remove the UCase function and answer the prompt with upper case text I get records... help -- thanks!!
Select UCase([AREA]) AS UArea
Where ((UCase([AREA])) Like [Enter the AREA or * for all] & "*")
Select UCase([AREA]) AS UArea
Where ((UCase([AREA])) Like [Enter the AREA or * for all] & "*")