Hi all,
I use the following line to determine what chart will be visible;
Now i would like that 2 cells determine what chart will be visible.
So let's say B16 contains the number "1" and cell B17 contains the number "1" the selected chart would be "11"
When B16 contains the number "1" and cell B17 contains the number "2" the selected chart would be "12".
I tried the following line of code but that didn't work;
Anyone knows how to put the number in B17 behind the number in B17 in formula?
I use the following line to determine what chart will be visible;
Code:
SelectedChart = "Chart" & Range("B16")
Now i would like that 2 cells determine what chart will be visible.
So let's say B16 contains the number "1" and cell B17 contains the number "1" the selected chart would be "11"
When B16 contains the number "1" and cell B17 contains the number "2" the selected chart would be "12".
I tried the following line of code but that didn't work;
Code:
SelectedChart = "Chart" & Range("B16", "B17")
Anyone knows how to put the number in B17 behind the number in B17 in formula?