ajwooden32
New Member
- Joined
- Feb 5, 2024
- Messages
- 15
- Office Version
- 365
- Platform
- Windows
My original question was needing a formula to find each date in B4:O25 in row Q3:IV3, then automatically enter text from B3:O3 into the intersecting cell below specific date. B4 has a sample that I manually entered into the correct locations. This question was answered using this formula:
=IF(AND($B4>=Q$3,$B4<R$3),$B$3,IF(AND($C4>=Q$3,$C4<R$3),$C$3,IF(AND($D4>=Q$3,$D4<R$3),$D$3,IF(AND($E4>=Q$3,$E4<R$3),$E$3,IF(AND($F4>=Q$3,$F4<R$3),$F$3,IF(AND($G4>=Q$3,$G4<R$3),$G$3,IF(AND($H4>=Q$3,$H4<R$3),$H$3,IF(AND($I4>=Q$3,$I4<R$3),$I$3,IF(AND($J4>=Q$3,$J4<R$3),$J$3,IF(AND($K4>=Q$3,$K4<R$3),$K$3,IF(AND($L4>=Q$3,$L4<R$3),$L$3,IF(AND($M4>=Q$3,$M4<R$3),$M$3,IF(AND($N4>=Q$3,$N4<R$3),$N$3,IF(AND($O4>=Q$3,$O4<R$3),$O$3,""))))))))))))))
Now I need to take the above formula (which works perfectly) to combine cells with the same date from B4:O25 into one cell over in Q4:AZ25. Can this be done?