Expression query

dcarr

Trainee Database Analyst
Local time
Today, 14:58
Joined
Jun 19, 2002
Messages
112
Hello, is it possible to rename a field by using an expression. I am attempting to produce a make table query and instead of using the default column names SUMOfCharge and SUMOfVolume I would like to rename the fields Rev and Vol. Does anyone know the syntax? Thanks
 
Change the SQL statement so that parts like Sum([YourField]) become like Sum([YourField]) AS NewFieldName
 
Alternatively (but the exact same thing)


NewFieldName: YourField
 
I tried your solution

The initial field was:

SumOfSIZETY

And after changing it the field was

SumOfSIZETY: Vol

When executed this prompted me for an input??? I just want it to replace SumOfSIZETY with Vol??

Any ideas?

Thanks
 
Vol: SIZETY


where you have a Sum total on the field.
 
Hello Mile!!! I was wondering how you built up your vast knowledge of Access and if you could give any pointers on how to improve ones knowledge of the application??
 

Users who are viewing this thread

Back
Top Bottom