Very Long (Working) Furmula. Can it be condensed or turned into a Macro?

Beeferson

New Member
Joined
Aug 19, 2016
Messages
2
Sorry guys, new to Excel and it was hard to make this formula. It is Literally the extent of my knowledge at this point to have even gotten it to work.

This formula takes a cell and looks for the persons name in a specific column on a sheet. If the name is found it returns the text in cell B1 of that sheet. I repeat the formula after an "&" Symbol to Check another sheet (Job) in the same way and return THAT text in its B1 Cell after the returned text from the first sheet. so the formula will return multiple job names separated by a space and comma if the worker is doing multiple jobs.

My issue Is I will have a min of 21 pages to check for the name, and that will be a huge formula that I will have to edit the sheet name, and column to search for different types of workers.
Here is the formula.

=IF(COUNTIF('Job Name Here'!$B$3:$B$15,'Labor Pool'!A2)>0,'Job Name Here'!$B$1&", ","AVAILABLE")&IF(COUNTIF('Job Name Here (2)'!$B$3:$B$15,'Labor Pool'!A2)>0,'Job Name Here (2)'!$B$1&", ","AVAILABLE")

If there is an easy way to make this a macro (sub) that would be easy to add to that would be awesome
If I over complicated what I'm trying to do, then an easier way would be much appreciated.
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
This may or may not be what you want to hear. Yes, a macro could be written for that. Could you manage the macro as the sheet names change and the number of sheets increase or decrease? That's for you to answer.

Here is a solution. Instead of creating one formula to get all the sheet results. Create a formula for each sheet that looks at a cell with the sheet name in it.

This formula was placed in cell B2 and is looking at cell B1 for the sheet name.
Cell B2: =IF(COUNTIF(INDIRECT("'"&B1&"'!"&"$B$3:$B$15"),'Labor Pool'!A2)>0,INDIRECT("'"&B1&"'!"&"$B$1"),"AVAILABLE")

Cell B1: Job Name Here

You copy that formula across the number of columns for which you have sheets. Put the sheet names above each. Use one formula to concatenate them all.

Cell A2: =B2&", "&C2&", "&D2

You could simply hide the columns until you need to edit them.

Jeff
 
Upvote 0

Forum statistics

Threads
1,216,146
Messages
6,129,125
Members
449,488
Latest member
qh017

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