oracle11g - OBIEE exported csv and when importing to Access I get an error -
i have report on obiee, date field made custom format mm-dd-yyyy have try [fmt:dateshort]. once exported .csv linking file ms access 2007 , date field error #num! why ?
either 1 of these problem/solution:
the #num! in access telling cell contains mix of data; digitit, text, example: 34g (or '-') throw #num!
you need go excel , change format of cell containing both numbers , text "mixed data" save sheet before importing access.
you can macro:
sub addspace() dim cell object each cell in selection cell.value = " " & cell.value cell.value = right(cell.value, len(cell.value) - 1) next end sub simply highlight cells needing formatting, run above macro, re-save spreadsheet.
or:
the #num! error value means value in field large (either positively or negatively) stored in field, based on field's datatype or fieldsize property setting. (https://support.microsoft.com/en-us/kb/209132)
based on format of dates, try first fix before else. date =/= number
Comments
Post a Comment