Selecting a non empty cell within a range to use within formula

SteveT160

New Member
Joined
May 30, 2022
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Hello,
I have a file I use for a production schedule. Part of it is in a 12 month gantt chart format with an 'x' used on the day the task is scheduled.
I have other columns which I use to display the actual date the task is scheduled. Currently this is manual, and I would like to use a formula to scan the range within the gantt chart row for the non empty cell, and then return the date that is displayed in row 2 of the same column. Hope that makes sense.
Thanks.
(Refer attached.)
 

Attachments

  • Excel Question.jpg
    Excel Question.jpg
    82.2 KB · Views: 9

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Welcome to the MrExcel board!

For the future:
MrExcel has a tool called “XL2BB” that lets you post samples of your data that will allow us to copy/paste it to our Excel spreadsheets, so we can work with the same copy of data that you are. Instructions on using this tool can be found here: XL2BB Add-in

Note that there is also a "Test Here” forum on this board. This is a place where you can test using this tool (or any other posting techniques that you want to test) before trying to use those tools in your actual posts.

Is this what you mean?

22 05 30.xlsm
ABCDEFGHIJKLMNO
1
2abcde1/05/20222/05/20223/05/20224/05/20225/05/20226/05/20227/05/20228/05/2022
3a2/05/2022    x
4b 4/05/2022   x
5c  7/05/2022  x
6d     
7e    3/05/2022x
Get Date
Cell Formulas
RangeFormula
B3:F7B3=IF($A3=B$2,FILTER($H$2:$O$2,$H3:$O3="x",""),"")
 
Upvote 0
Put this formula in all cells in the range B3:F7.

=IF($A3=B$2,OFFSET($A3,-(ROW()-2),MATCH(TRUE,INDEX(($H3:$AK3<>0),0),0)+6),"")
 
Upvote 0

Forum statistics

Threads
1,214,987
Messages
6,122,614
Members
449,091
Latest member
gaurav_7829

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