0% found this document useful (0 votes)
51 views14 pages

Problems 35

The document contains examples of Excel macros that demonstrate various functions and operations, including calculations, concatenation, transposition, and array formulas. The macros range from simple to more complex, building knowledge around manipulating and transforming data within the Excel environment using VBA macros.

Uploaded by

emiridrizovic
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as XLS, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
51 views14 pages

Problems 35

The document contains examples of Excel macros that demonstrate various functions and operations, including calculations, concatenation, transposition, and array formulas. The macros range from simple to more complex, building knowledge around manipulating and transforming data within the Excel environment using VBA macros.

Uploaded by

emiridrizovic
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as XLS, PDF, TXT or read online on Scribd
You are on page 1/ 14

A

1 EX1Macro
2
3 Before
4
5
6
7

After
0.1
0.2
0.3
1

10
20
30
100

<-- =(0.1)*100
<-- =(0.2)*100
<-- =(0.3)*100
<-- =((B4+B5)/B6)*100

A
1 EX2Macro
2
3 Before
4
5
6
7

After
0.1
0.2
0.3
1

<-- 0.1
<-- 0.2
<-- 0.3
<-- =(A4+A5)/A6

10
20
30
100

<-- =(0.1)*100
<-- =(0.2)*100
<-- =(0.3)*100
<-- =((C4+C5)/C6)*100

F
1
2
3
4
5
6
<-- =((C4+C5)/C6)*100
7

A
1 EX3Macro
2
3
4
5
6
7
8
9
10
11
12
13

1
3
8

2
5
10

2
12
64

4
20
80

F
1
2
3
4
5
6
7
8
9
10
11
12
13

3
5
10

6
20
80

A
1
2
3
4
5
6
7
8
9

EX4Macro

a
1a
aabb

1 <-- 1
<-- a
<-- 1a
2 <-- =A5+1
<-- ="aa" & "bb"

2 <-- 2
<-- a
2 <-- 2
6 <-- =(D5+1)*2
#VALUE! <-- =("aa" & "bb")*2

F
1
2
3
4
5
6
7
<-- =(D5+1)*2
8
<-- =("aa"
9 & "bb")*2

A
1
2
3
4
5
6
7
8
9
10
11

EX5Macro
Before
aa
2
4
6
16
1a
#VALUE!

<-- aa
<-- 1
<-- 2
<-- =1+2
<-- =A8+A6
<-- 1a
<-- ="aa" & "ss"

After
aa
2
4
6
16
1a
#VALUE!

A
1 EX6Macro
2
3
4
5
6
7
8
9

12 <-- 12
24 <-- =12+12
36 <-- =B8+B7

A
1 EX7Macro
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32

<--

A
1 EX8Macro
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32

Original
Transposed

1
2
3
4

<--

G
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32

1
2
3
4

A
1 EX9Macro
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32

Original
Transposed

1
2
3
4

1
2
3
4

5
6
7
8

9
10
11
12

<--

G
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32

1
2
3
4

1
5
9

2
6
10

3
7
11

4
8
12

You might also like