Formula specific Question

Craigm9

New Member
Joined
Feb 14, 2024
Messages
2
Office Version
  1. 365
  2. 2021
Platform
  1. Windows
Hi there,

I am wondering if anyone knows a formula for this problem in the attached picture.

I am trying to show each Stand ID (Column A) with each species (Column E-H). In my new spread sheet I want it to look like the second picture attached each species (G) seperated into individual stands (A) without having to manually put in each Stand ID with each species associated with that stand. Does anyone know how to do this or a formula for it? Thanks

1707939991936.png
1707940029758.png
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Your species have multiple stands. I don't think a formula is going to do it. And then just as say that, somebody might get creative. You can use VSTACK and Unique to give you a single column list of Species, but then how do you pair up the multiple Stands with a Lookup?

In my opinion, you're going to need a macro.
 
Upvote 0
Well, as VSTACK and UNIQUE were mentioned:
A point to start could be:
Excel Formula:
=SORT(FILTER(UNIQUE(VSTACK(CHOOSECOLS(A2:H21,1,5),CHOOSECOLS(A2:H21,1,6),CHOOSECOLS(A2:H21,1,7),CHOOSECOLS(A2:H21,1,8))),CHOOSECOLS(UNIQUE(VSTACK(  CHOOSECOLS(A2:H21,1,5),CHOOSECOLS(A2:H21,1,6),CHOOSECOLS(A2:H21,1,7),CHOOSECOLS(A2:H21,1,8))),2)<>0),1)

(probably it is worth separating into stages, using LET - unfortunately I have to go offline now, so will not experiment with it - I'm still not good in these new formulas)
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,110
Messages
6,123,140
Members
449,098
Latest member
Doanvanhieu

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