Posted: Wed Mar 12, 2008 1:04 pm Post subject: Лидирующие нули в Excel
Здравствуйте.
Пишу репорт для заполнения ячеек excel через OLE. Если число в поле имеет лидирующие нули, они автоматически удаляются Excel. Нужно, чтобы они оставались. Как это сделать?
Один из распространенных способов, поставить одинарную кавычку 'перед числом.
Или более медленный, установить в свойствах ячейки, что она содержит текст:
Пример в sdn.sap.com
Code:
* character type for columns
data: h_columns TYPE ole2_object,
h_cell TYPE ole2_object.
CALL METHOD OF excel 'Columns' = h_columns
EXPORTING
#1 = 'F:K'.
set property of h_columns 'NumberFormat' = '@'.
CALL METHOD OF excel 'Cells' = h_cell
EXPORTING
#1 = 14
#2 = 7.
SET PROPERTY OF h_cell 'Value' = '0001'.
Устанавливает для всех ячеек в колонках 'F:K' свойство Text
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum
All product names are trademarks of their respective companies. SAPNET.RU websites are in no way affiliated with SAP AG. SAP, SAP R/3, R/3 software, mySAP, ABAP, BAPI, xApps, SAP NetWeaver and any other are registered trademarks of SAP AG. Every effort is made to ensure content integrity. Use information on this site at your own risk.