Click here to Skip to main content
15,891,136 members
Home / Discussions / Database
   

Database

 
GeneralRe: Export of a CSV file loses second decimal place... Pin
Ashfield6-Nov-08 20:56
Ashfield6-Nov-08 20:56 
GeneralRe: Export of a CSV file loses second decimal place... Pin
new_phoenix7-Nov-08 4:16
new_phoenix7-Nov-08 4:16 
GeneralRe: Export of a CSV file loses second decimal place... Pin
Ashfield7-Nov-08 8:56
Ashfield7-Nov-08 8:56 
GeneralRe: Export of a CSV file loses second decimal place... Pin
new_phoenix7-Nov-08 10:45
new_phoenix7-Nov-08 10:45 
GeneralRe: Export of a CSV file loses second decimal place... Pin
Ashfield9-Nov-08 20:08
Ashfield9-Nov-08 20:08 
GeneralRe: Export of a CSV file loses second decimal place... Pin
new_phoenix7-Nov-08 8:03
new_phoenix7-Nov-08 8:03 
GeneralRe: Export of a CSV file loses second decimal place... Pin
Ashfield7-Nov-08 8:59
Ashfield7-Nov-08 8:59 
GeneralRe: Export of a CSV file loses second decimal place... Pin
riced8-Nov-08 1:37
riced8-Nov-08 1:37 
The Selection.NumberFormat function will do it in Excel.
E.g. Range("A1:A5").Select
Selection.NumberFormat = "0.00"
will format cells A1 to A5. To format all of column A use Columns("A:A").Select instead of Range.
This has to be a macro or VBA subroutine in Excel. If you use a subroutine you could trigger it with the the WorkBook_Open event.
Question[Message Deleted] Pin
siyapatel6-Nov-08 3:24
siyapatel6-Nov-08 3:24 
AnswerRe: Select Data Pin
Blue_Boy6-Nov-08 3:30
Blue_Boy6-Nov-08 3:30 
General[Message Deleted] Pin
siyapatel6-Nov-08 3:36
siyapatel6-Nov-08 3:36 
GeneralRe: Select Data Pin
Ben Fair7-Nov-08 6:02
Ben Fair7-Nov-08 6:02 
RantRe: [Message Deleted] Pin
Wendelius7-Nov-08 6:50
mentorWendelius7-Nov-08 6:50 
GeneralRe: [Message Deleted] Pin
Paul Conrad7-Nov-08 11:03
professionalPaul Conrad7-Nov-08 11:03 
GeneralRe: [Message Deleted] Pin
Wendelius7-Nov-08 20:29
mentorWendelius7-Nov-08 20:29 
AnswerRe: [Message Deleted] Pin
Paul Conrad7-Nov-08 11:02
professionalPaul Conrad7-Nov-08 11:02 
QuestionChanging Datatype of columns Pin
Sunil_Botre6-Nov-08 1:41
Sunil_Botre6-Nov-08 1:41 
AnswerRe: Changing Datatype of columns Pin
Wendelius6-Nov-08 8:13
mentorWendelius6-Nov-08 8:13 
AnswerRe: Changing Datatype of columns Pin
joindotnet7-Nov-08 1:13
joindotnet7-Nov-08 1:13 
QuestionSearch Sql table for a word contains some letters Pin
y_mmohd5-Nov-08 23:39
y_mmohd5-Nov-08 23:39 
AnswerRe: Search Sql table for a word contains some letters Pin
Paddy Boyd6-Nov-08 0:38
Paddy Boyd6-Nov-08 0:38 
AnswerRe: Search Sql table for a word contains some letters Pin
Wendelius6-Nov-08 8:18
mentorWendelius6-Nov-08 8:18 
GeneralRe: Search Sql table for a word contains some letters Pin
y_mmohd6-Nov-08 23:39
y_mmohd6-Nov-08 23:39 
GeneralRe: Search Sql table for a word contains some letters Pin
Ashfield7-Nov-08 1:43
Ashfield7-Nov-08 1:43 
GeneralRe: Search Sql table for a word contains some letters Pin
Wendelius8-Nov-08 4:35
mentorWendelius8-Nov-08 4:35 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.