Exporting/Analyzing w/Excel

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a query that I'd like to export just the "mmm dd" of a date field, but
when I do that, it retains the year.

Is there a way to export just the "mmm dd" and exclude the year?

Thanks in advance for any help!!!
 
I have a query that I'd like to export just the "mmm dd" of a date field, but
when I do that, it retains the year.

Is there a way to export just the "mmm dd" and exclude the year?

Thanks in advance for any help!!!

Add a new column to the query.
NewField:Format([DateField],"mmm dd")

Use this column instead of the [DateField] in the spreadsheet. It will
no longer be date datatype.
 
That works perfect! Thank you!

fredg said:
I have a query that I'd like to export just the "mmm dd" of a date field, but
when I do that, it retains the year.

Is there a way to export just the "mmm dd" and exclude the year?

Thanks in advance for any help!!!

Add a new column to the query.
NewField:Format([DateField],"mmm dd")

Use this column instead of the [DateField] in the spreadsheet. It will
no longer be date datatype.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top