Hi,
I'm in need of some help please. I'm trying to do a stock report for different depots so i can see which depot has what available in stock. At the moment i have a CSV file with all the data like the below:
What I'd like is to have just the 1 row (for each DepotID) and then a column for each product with the value 0 or 1.
0 means not available
1 means it is available
How do i go about doing this?
Thank you for your help in advance!
I'm in need of some help please. I'm trying to do a stock report for different depots so i can see which depot has what available in stock. At the moment i have a CSV file with all the data like the below:
DepotID | Available | Product |
1234 | 1 | Coca-Cola 330ml |
1234 | 0 | Dr Pepper 500ml |
1234 | 0 | Fanta 330ml |
1234 | 1 | Monster Energy 500ml |
1234 | 1 | Sprite 500ml |
What I'd like is to have just the 1 row (for each DepotID) and then a column for each product with the value 0 or 1.
0 means not available
1 means it is available
How do i go about doing this?
Thank you for your help in advance!