rcrecelius
Technical User
I have data this will come out of the database looking like this...
Location Line Part# PartType
1 GAT 1000 N
2 GAT 1000 S
3 GAT 1000 N
The locations represent the stores with Location 1 being the warehouse, 2 3 and so on are the retail stores. I need to identify part#'s that are PartType "S" at the retail locs that are NOT PartType "S" at the warehouse. If I could get the data to look like this...listing the each Location Part Type beside the Part#
Part# L1PT L2PT L3PT
1000 N S N
Will a Pivot table get me where I want to go?
Location Line Part# PartType
1 GAT 1000 N
2 GAT 1000 S
3 GAT 1000 N
The locations represent the stores with Location 1 being the warehouse, 2 3 and so on are the retail stores. I need to identify part#'s that are PartType "S" at the retail locs that are NOT PartType "S" at the warehouse. If I could get the data to look like this...listing the each Location Part Type beside the Part#
Part# L1PT L2PT L3PT
1000 N S N
Will a Pivot table get me where I want to go?