Query Access table via VBA and retain cell formats

mikeymay

Well-known Member
Joined
Jan 17, 2006
Messages
1,600
Office Version
  1. 365
Platform
  1. Windows
I am running a query via VBA to populate a number of cells with the results of the query.

I have the cells formatted to how I need them but upon the cells being populated, their formats are being changed to date formats.

The fields in the Access table are set up with the correct formats and I am using the following code to populate Excel with the values but they are still displaying as dates when finished
Code:
With rsQuery
   .Open strQuery, cnConnection, adOpenKeyset, adLockOptimistic

   Range("CD_CaseNumber") = CStr(strCase) 'ACCESS FIELD AND EXCEL CELL FORMATTED AT TEXT
   Range("CD_StartDate") = CDate(.Fields("CaseStartDate")) 'ACCESS FIELD AND EXCEL CELL FORMATTED AT 'DD MMM YY' FORMAT
   Range("CD_EndDate") = Format(CDate(.Fields("CaseEndDate")), "dd mmm yy") 'ACCESS FIELD AND EXCEL CELL FORMATTED AT 'DD MMM YY' FORMAT
   Range("CD_ClosingBalance") = CDec(.Fields("CaseClosingBalance")) 'ACCESS FIELD AND EXCEL CELL FORMATTED AT 2 DP WITH 000'S SEPERATOR FORMAT
   Range("FD_IntDate") = .Fields("IntAppliedOnDate") 
   
   
   .Close
End With
I'm assuming there will be an answer of 'just re-format the cell after population' but surely this shouldn't need to happen and the formats from the source and the location should be used/retained?

Really struggling with this one as I thought it would have been quite simple.


Thanks
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
What happens if you don't use the conversion functions like CStr, CDate etc?
Code:
With rsQuery
   .Open strQuery, cnConnection, adOpenKeyset, adLockOptimistic

   Range("CD_CaseNumber").Value =strCase 'ACCESS FIELD AND EXCEL CELL FORMATTED AT TEXT
   Range("CD_StartDate").Value =.Fields("CaseStartDate") 'ACCESS FIELD AND EXCEL CELL FORMATTED AT 'DD MMM YY' FORMAT
   Range("CD_EndDate").Value = .Fields("CaseEndDate") 'ACCESS FIELD AND EXCEL CELL FORMATTED AT 'DD MMM YY' FORMAT
   Range("CD_ClosingBalance").Value =.Fields("CaseClosingBalance") 'ACCESS FIELD AND EXCEL CELL FORMATTED AT 2 DP WITH 000'S SEPERATOR FORMAT
   Range("FD_IntDate").Value = .Fields("IntAppliedOnDate") 
   
   
   .Close
End With
 
Upvote 0
What data are you returning from the recordset and how are the cells formatted?
 
Upvote 0
There are 2 date and a decimal number. All 3 are held in an access field defined for the required formats and the cells are formatted as required as well so I can;t work out why it is ignoring all the defined formats and putting in as dates.
 
Upvote 0

Forum statistics

Threads
1,214,565
Messages
6,120,254
Members
448,952
Latest member
kjurney

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top