VBA Find populated cells and pull header

Basje1238

New Member
Joined
Jan 11, 2019
Messages
1
Hello,

I am struggling to find a solid method to find the populated cells in a row.

In the capacity planning below I have a table of seat numbers and dates as headers. I want to find the daterange in every row. When there is only one daterange without blank cells in between I can do this with the following code:

Code:
        fCol = Cells(ActiveCell.Row, 5).End(xlToRight).Column
        lCol = Cells(ActiveCell.Row, 58).End(xlToLeft).Column
        
        If Cells(4, lCol).Value = "Total" Then
            EffDate = "Check"
        Else
            EffDate = Cells(4, fCol)
        End If
        
        DiscDate = Cells(4, lCol)

When there are blank cells in between this does not work. As an example for OHD/TIV/EIN, I would like to get two daterange instead of one:

1) 15-Apr to 22-Apr
2) 6-Mei To 13-Mei

JECna.jpg


Can somebody point me in the right direction?

Regards,
Bas
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)

Forum statistics

Threads
1,214,793
Messages
6,121,619
Members
449,039
Latest member
Mbone Mathonsi

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