SOLVED

Help moving data and matching to correct columns and rows.

Copper Contributor

I am trying to convert product data so I can upload it into a website in its specific format. To do so I need to change the layout of the current file so I can move the data. So I need to put the data from D into the specific columns that I made from C and it must match the part numbers. There is 298 Unique attributes from column C that I made into each of their own columns. I need to match the correlating part numbers and take the data from D to its correct part number location and column.  I am lost completely on this. 

 

So IF E2=A2 and AU1=C2, return D2, then must count again and IF E2=A3 and BS1=C3 return D3.  Any help would be awesome.  

 

turboedbird_0-1618344807247.png

 

6 Replies
best response confirmed by turboedbird (Copper Contributor)
Solution

@turboedbird Are you familiar with Power Query (PQ)?

 

It would take only a few steps (connect to the csv file, keep three columns, promote headers, do some sorting, data typing and cleaning-up and then pivot the attribute column). Now, if you are not familiar with PQ, this will mean absolutely nothing to you.

 

I've done all that but noticed that, for instance, part number 300104ERL has one attribute called "Compatible Hose" with 5 different values on 5 different rows. The pivot step mentioned above couldn't handle this, so an extra step had done to group such items. But then the five different hose types are merged into one cell. Not sure if that is a problem for you or not.

 

The end result is a table with 4203 rows and 298 columns. File attached, though you will not be able to connect to the source file as it was linked to a location on my computer. Now, if you do know PQ, you'll be able to fix that yourself.

Thank you for the work and information it is greatly appreciated. I spent a lot of hours trying different indexes, VLOOKUPS, MATCHES and just getting stuck in the same thing.

I have never heard of PQ, but I will be downloading it now and trying to figure it out. Since this was only for one brand I will still need to learn to do this for all of the other brands that will be imported. So looking at the steps you took, I will need to:

1. connect to the csv file
2. keep three columns (Partnumber, Attribute, Value) I am assuming these three.
3. promote headers (Promote Attributes)?
4. do some sorting (What did you sort on?)
5. data typing and cleaning-up (Not sure if this is just making it look pretty or something else?)
6. then pivot the attribute column (When you pivot the column does the data follow at that point?)
Extra step for grouping multiple items with the same attribute (Does PQ allow you to group without losing data?)

I think I can figure most of those out with some googling but may need some clarification on the data typing and cleaning-up? Would it be possible for you to elaborate on these for me? Again thank you for all the help it is greatly appreciated.

@turboedbird Difficult to explain all of it in text here, but there are many resources on-line where you can learn the basics. For instance here:

https://exceloffthegrid.com/power-query-introduction/ 

If you are on a Windows version of Excel (2016 or thereafter), PQ is included. In more recent version you'll find the tools on the Data ribbon under "Get and transform data".

 

Once you have mastered the basics, you'll be able to follow the steps applied. If nor, com back here.

@Riny_van_Eekelen Hi, I think I have a similar issue, but on a smaller scale. The answer may lie in Power BI, which someone else is looking into, but for now, I am getting csv files from data from our client database, and even if it's cleaned up in Power Bi, when we export out, it appears like table on left in pic below. 

 

We want it to end up like Table on right in pic. I've done a little playing with PQ, but can't get it to get data to stay married properly, without just ending up with hundreds of columns and the questions repeated etc

(This isn't the actual data, but the set up is identical.) Have attached this spreadsheet.

 

Any help very much appreciated. 

 

Screenshot 2021-04-26 132056.png

@Davidm54 
Can offer you two solutions. Choose the one you like best.
Power Query: Connect to the blue table, pivot the Question column with Answer as the values, without aggregation. Load to Excel.


Power Pivot: Add the blue table to the Data Model and create a DAX measure for the Answer column like:

=CONCATENATEX( Table1, Table1[Answer] )

Create a pivot valve with Questions in the column field, Name in the row field and the newly created measure in the value field.

 

Both solutions are included in the attached file.

Thank you so much. I'm only weeks into using PQ consistently, so there's still stuff confusing me about it, this not only solves problem, but also shows me I was looking in right spot, I just hadn't quite sussed what the options effected. Wins all round. thanks again.
1 best response

Accepted Solutions
best response confirmed by turboedbird (Copper Contributor)
Solution

@turboedbird Are you familiar with Power Query (PQ)?

 

It would take only a few steps (connect to the csv file, keep three columns, promote headers, do some sorting, data typing and cleaning-up and then pivot the attribute column). Now, if you are not familiar with PQ, this will mean absolutely nothing to you.

 

I've done all that but noticed that, for instance, part number 300104ERL has one attribute called "Compatible Hose" with 5 different values on 5 different rows. The pivot step mentioned above couldn't handle this, so an extra step had done to group such items. But then the five different hose types are merged into one cell. Not sure if that is a problem for you or not.

 

The end result is a table with 4203 rows and 298 columns. File attached, though you will not be able to connect to the source file as it was linked to a location on my computer. Now, if you do know PQ, you'll be able to fix that yourself.

View solution in original post