Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

ALV issue

Former Member
0 Likes
477

Hi All,

There is a program which generates the excel sheet from an ALV report. I want certain fields in the excel sheet to be in large bold font.

Can anyone please suggest me the possible way to do it.

Thanks and regards

Rohit

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
450

Hi,

Use teh get and set property:

Sample code:



     GET PROPERTY OF cell 'Font' = bold.
      SET PROPERTY OF bold 'Bold' = 1.

3 REPLIES 3
Read only

Former Member
0 Likes
450

This message was moderated.

Read only

Former Member
0 Likes
450

Refer the following blogs

/people/alvaro.tejadagalindo/blog/2009/02/05/excel-ole-and-abap--create-fancy-reports

Read only

Former Member
0 Likes
451

Hi,

Use teh get and set property:

Sample code:



     GET PROPERTY OF cell 'Font' = bold.
      SET PROPERTY OF bold 'Bold' = 1.