Hia all
I am trying to make sparklines/microcharts and run into a problem..
How do i name the lines? (and group them afterwards?)
Here is my code:
-----------------------
Sub sparkline()
limit = 30
'Fill Range with random numbers
For Row = 1 To limit
Cells(Row, 10) = Rnd(100) * 100
Next...