Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
The problem is next I'm imoprting data from a database and this imported
data consists os from a date_time and value. the problem is next, the time and date field isn't recognized as such and bacause of this my query to select a specific date range doesn't work ,however when i click on the field then it's recognized as a date and time field. I realy can't click on every field to recognize it. Does anyone know how to help me. Thx |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
There are two approaches that may help:
1. Use the Import Wizard: Data Inport External Data Import Data... and tell the Wizard that the field is a Date 2. Use a small macro to "click-activate" all the cells at once. Select the cells and run: Sub wake_up() Set saveit = Selection For Each r In saveit r.Select Application.SendKeys "{F2}" Application.SendKeys "{ENTER}" DoEvents Next End Sub -- Gary''s Student - gsnu2007e "george" wrote: The problem is next I'm imoprting data from a database and this imported data consists os from a date_time and value. the problem is next, the time and date field isn't recognized as such and bacause of this my query to select a specific date range doesn't work ,however when i click on the field then it's recognized as a date and time field. I realy can't click on every field to recognize it. Does anyone know how to help me. Thx |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Recognizing *.xls files | Excel Discussion (Misc queries) | |||
Recognizing Repeating Data-Groups | Excel Discussion (Misc queries) | |||
Formulas not recognizing new data | Excel Discussion (Misc queries) | |||
Recognizing #N/A | Excel Worksheet Functions | |||
Charts not recognizing source data if original linked data is changed. | Charts and Charting in Excel |