I need to convert below mentioned table rows to columns using pivot table (dynamic column) where in table Article Number,Article Name,Catalog Code are fixed columns .Your help will be highly appreciated
ArticleNumber ArticleName CatalogCode AttributeName AttributeValue
s123 abc 1 SportsCategory Rakesh
s123 abc 1 Brand Amar
s123 abc 1 ProductDivision Ball
s123 abc 1 MarketingDivision Boss
s222 XYZ 1 SportsCategory Rakesh5
s222 XYZ 1 Brand Red
s222 XYZ 1 ProductDivision blue
s222 XYZ 1 SportsCategory Rakesh8
OutPut:
ArticleNumber ArticleName CatalogCode SportsCategory Brand ProductDivision MarketingDivision
s123 abc 1 Rakesh Amar Ball Boss
s222 abc 1 Rakesh5 Red blue Rakesh8