Find value of every nonblank that's to the right of a blank, repeating along a range

sbawnh

Board Regular
Joined
Feb 25, 2019
Messages
50
Office Version
  1. 365
Platform
  1. Windows
ABCDEFGHIJK
16/10/20186/29/20188/2/201812/31/2018
2

<tbody>
</tbody>

Hi,

Is it possible to show the value of B1, D1, and I1 laid out maybe in columns L:X.

This is every cell to the right of one or many blanks.
 
Last edited:

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
I am not sure why you want to put formulas out to Column X given that the maximum number of columns that will ever be needed is 9 (assuming Column I is the last cell that will be filled) which means you can stop at Column T. With that said, put this array-entered** formula in cell L1 and copy it across to cell T1...

=IFERROR(SMALL(IF(($A1:$H1="")*($B1:$I1<>""),$B1:$I1),COLUMNS($B:B)),"")

**Commit this formula using CTRL+SHIFT+ENTER and not just Enter by itself
 
Upvote 0

Forum statistics

Threads
1,215,465
Messages
6,124,982
Members
449,201
Latest member
Lunzwe73

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