Transpose coloumn to row skipping some values based on another cell

alex0182828

Board Regular
Joined
Jun 20, 2012
Messages
88
Office Version
  1. 365
Platform
  1. MacOS
I need to transpose column A but skip fields that have the value 'Legacy' in column d

I.e transposed row shoud not have 'colour' in it.

Thanks heros :)

Screenshot 2024-05-01 at 15.06.48.png
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
How about:

Excel Formula:
=LET(RemovedLegacy,INDEX(FILTER(A2:D13,D2:D13<>"Legacy"),,1),FILTER(RemovedLegacy,RemovedLegacy<>"Colour"))
 
Upvote 1
Excel Formula:
=TRANSPOSE(FILTER(A2:A13,D2:D13<>"Legacy"))
 
Upvote 1
Another option
Excel Formula:
=TOROW(FILTER(A2:A100,D2:D100<>"legacy"),1)
 
Upvote 0

Forum statistics

Threads
1,216,075
Messages
6,128,667
Members
449,462
Latest member
Chislobog

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top