Application Development 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: 

Display Percent Symbol in Classical List

aasim_khan
Participant
0 Kudos

Hi all

Could anyone please tell me how do I display percent symbol in my classical list without concatenation.

I am calculating performance supply percentage for which I am getting a value which I want to display on the list.

e.g. If I am getting a value of 82, I want 82% on the output list.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

you can write by using simple write statement write or write at

--Naresh.

5 REPLIES 5

former_member188685
Active Contributor
0 Kudos

if you avoid concatenation, I can see one option, in the Header label mention some indicator the values are in %. so that user can understand they are in %.

Amount in %

10

20

40

89

Former Member
0 Kudos

check this thread..

[;

Former Member
0 Kudos

Hi,

you can write by using simple write statement write or write at

--Naresh.

Former Member
0 Kudos

Hi,

When you are printing the values in the output, use offset values to print '%' next to the amount value, which means you want to display the amount value from 45th position to 64th position, then print the '%' value in 65th position.

Rgds,

Bujji

aasim_khan
Participant
0 Kudos

My problem is still not solved. I went thru the thread, I didn't understand what does "yourKF % * 100" mean. I tried using it in my report, but in-vain