0% found this document useful (0 votes)
7 views

05 06 Array Variables Formulas

This document defines an array called astrMonths that contains the 12 months of the year as strings. It assigns each month as a string value to the corresponding element of the astrMonths array, with the first element containing "January", the second containing "February", and so on up to the twelfth element containing "December".

Uploaded by

KOUMTOUDJI
Copyright
© © All Rights Reserved
Available Formats
Download as XLSX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views

05 06 Array Variables Formulas

This document defines an array called astrMonths that contains the 12 months of the year as strings. It assigns each month as a string value to the corresponding element of the astrMonths array, with the first element containing "January", the second containing "February", and so on up to the twelfth element containing "December".

Uploaded by

KOUMTOUDJI
Copyright
© © All Rights Reserved
Available Formats
Download as XLSX, PDF, TXT or read online on Scribd
You are on page 1/ 1

dim astrMonths(1 to 12)

1 January astrMonths(1)="January"
2 February astrMonths(2)="February"
3 March astrMonths(3)="March"
4 April astrMonths(4)="April"
5 May astrMonths(5)="May"
6 June astrMonths(6)="June"
7 July astrMonths(7)="July"
8 August astrMonths(8)="August"
9 September astrMonths(9)="September"
10 October astrMonths(10)="October"
11 November astrMonths(11)="November"
12 December astrMonths(12)="December"

You might also like