cancel
Showing results for 
Search instead for 
Did you mean: 

Meaning of the coding

Former Member
0 Kudos

Hi,

Anyone can advise what is the meaning of the code below.

I am reading and try to understand one report but not sure what does the below code do.

Whileprintingrecords

Global a_h_1_jan () As Number

Redim Preserve a_h_1_jan (31)

formula = sum(a_h_1_jan) * 100 / 31

Thanks.

Mavis

Accepted Solutions (0)

Answers (1)

Answers (1)

abhilash_kumar
Active Contributor
0 Kudos

Hi Mavis,

Looks like the variable a_h_1_jan () is an array and has been resized to hold 31 values.

sum(a_h_1_jan) : this sums up the values in the array.


-Abhilash