Help with conditional TEXTJOIN for distinct values

DigitalZugzwang

New Member
Joined
Jul 27, 2017
Messages
20
Hi all,

I recently posted a problem and Marcelo Branco gave me the perfect solution. Now I have a related issue and unfortunately, I can't seem to take that solution and tweak it for my new issue.

In the table below, there are bid numbers which always start at 1. A job will always have 1 bid but can have many more. Also, the bid numbers can repeat for the same job number if there are multiple activities being preformed. I need to TEXTJOIN the bid numbers based on a selected Job Number. For example if Job Number 1 is entered into the selection cell the result would be: 1, 2, 3 but if Job Number 2 was selected it would be 1. (notes below table on formulas tried)



Job NumberActivityBid Number
1Install1
1Decom1
1Install2
1Install3
2Decom1
3Install1
3Install2
3Decom2
3Install3

<tbody>
</tbody>

I have gotten this to work with the UNIQUEVALUES function from morefunc.
Code:
{=TEXTJOIN(", ",1,UNIQUEVALUES(IF(BidTrack[Job]='WIP Update'!$B$6,BidTrack[Bid],""),1))}

Since not all users will be able to access that add-in, I need a work around. I've tried:
Code:
{=TEXTJOIN(", ",1,IF(MATCH(BidTrack[Bid],BidTrack[Bid],0)=MATCH(ROW(BidTrack[Bid]),ROW(BidTrack[Bid])),BidTrack[Bid],""))}
Obviously, this does not address the need for the condition.

I've also tried:
Code:
{=TEXTJOIN(", ",1,IF(BidTrack[Job]=B6,BidTrack[Bid],""))}
Unfortunately, this lists every instance of the Bid number is returned

Final Attempt:
Code:
{=TEXTJOIN(", ",1,IF(BidTrack[Job]=B6,IF(MATCH(BidTrack[Bid],BidTrack[Bid],0)=MATCH(ROW(BidTrack[Bid]),ROW(BidTrack[Bid])),BidTrack[Bid],""),""))}

This last shot results in blanks for any bid number that isn't wholly unique other than the first occurrence. So bid 1 will only return as a result when job 1 is selected.

I want to thank the community here, it has been extremely helpful and educational. You all are making me look good for my boss, thank you!
 
Last edited:

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Try this version

=TEXTJOIN(", ",1,IF(FREQUENCY(IF(BidTrack[Job]='WIP Update'!$B$6,MATCH(BidTrack[Bid],BidTrack[Bid],0)),ROW(BidTrack[Bid])-MIN(ROW(BidTrack[Bid]))+1),BidTrack[Bid],""))
 
Last edited:
Upvote 0
or this one's a bit shorter.....

=TEXTJOIN(", ",1,IF(BidTrack[Job]='WIP Update'!$B$6,IF(MATCH(BidTrack[Bid],BidTrack[Bid],0)=ROW(BidTrack[Bid])-MIN(ROW(BidTrack[Bid]))+1,BidTrack[Bid],""),""))
 
Upvote 0

Forum statistics

Threads
1,214,552
Messages
6,120,172
Members
448,948
Latest member
spamiki

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