SQL problem (Formating multiple records in a table to one line in a grid)

Need help on SQL problem (Formating multiple records in a table to one line
in a grid) :

We have one table that we need to format the data in a grid. We can't seem
to get this right. Can anybody help us with suggestions / Solution to our
problem, please.

Here is the table
Item_no    Size    Dep    Amout
11111        33        1        1
11111        33        2        2
11111        34        2        3
11111        35        1        3
11111        35        2        4
11111        36        1        2
11111        36        2        1
11112        20        1        0
11112        21        1        2
11113        33        1        1
11113        33        3        2
11113        34        1        2
11113        34        3        3
11113        35        1        8
11113        35        3        2
11113        36        1        2
11113        36        3        1
11114        33        1        4

The GRID
Need this output in a grid
When looking up Item no. 11111
Dep    33    34    35    36
1        1        0     3        2
2        2        3     4        1

When looking up Item no. 11113
Dep    33    34    35    36
1        1        2     8        2
3        2        3     2        1

I Would really appresiate if we can get some help with this.

Trond Kallerud
Silver Data as
Norway