Hello

I have just begun using VBA and I have read some training books but I don't know how to do what I want to do. I'll explain what I want to do:

I have a table with a lot os rows and columns full of data, for example this is an extract from this table:

2 14:10:43 332 0 0 -9999 22,9832 22,9832
2 15:25:34 351 0 0 -9999 22,8402 22,8402
4 18:16:30 453 0 0 0 23,2533 23,2533
4 18:21:35 450 0 0 0 23,0747 23,0747
4 18:48:44 447 0 0 0 22,6821 22,6821
5 07:55:51 270 0 0 5,9675 20,6003 20,6003
7 13:19:52 0 0 0 20,369 0 0
11 10:08:02 71 0 0 0 11,3658 11,3884
1 10:38:11 420 0 0 -9999 22,9648 22,9648
2 10:32:06 604 0 0 -9999 13,9933 13,9933

I want to make a macro that create a chart where is drawn a cloud of points belonging to this table, but I have to do it point by point because I want that each point belongs to a only serie in order to put a different label to each one. For example, each series has to be xvalue--> column 7, yvalue--> column 3, and the name of the serie--> columns 1 and 2. Firstsly I want to do this, and like a second assignment, I need to do run row by row and cheking if it's fitted a condition.
Any idea about how can I start doing this macro?
Thanks you