Macro for left fill in dat

Kevw1

New Member
Joined
Dec 6, 2017
Messages
36
Hi can anyone help please?

I am trying to create a macro to auto fill cells to the left, based on another cells population. I have a macro that fills to the right, but can not get it to fill to the left, still relatively new to VBA.

I am creating a forecast for resources, the only known value is the milestone the project has reached. I have a table with Project in the rows and Month in the columns. The table then has the Milestone identified against the Project and month delivered e.g.

Jan-18Feb-18Mar-18Apr-18May-18
Project 1 Milestone 3
Project 2 Milestone 1 Milestone 2
Project 3 Milestone 2 Milestone 5

<colgroup><col span="6"></colgroup><tbody>
</tbody>

There is a changing number of projects but will be around 100-200 and this will span multiple years 10+, hence needs to keep running until it has got to the end of the table.

I currently have a table with all this data in on a tab called "Monthly View" and this data is pasted in to a new tab called "Macro" in excel which is where the Macro runs.

I need to be able to use the populated Milestone and fill the cells to the Left, until it hits the next Milestone. When the fill reaches the first Milestone "Project Start" it must stop likewise when it sees the last milestone "Project Finish" there will be no further Milestones. Not all milestones will be available so will have to account for this also. e.g.

Jan-18Feb-18Mar-18Apr-18May-18
Project 1
Milestone 3
Milestone 3
Milestone 3
Milestone 3
Milestone 3
Project 2
Milestone 1
Milestone 1
Milestone 2
Milestone 2
Milestone 2
Project 3
Milestone 2
Milestone 2
Milestone 2
Milestone 5
Milestone 5

<tbody style="background-attachment: scroll; background-clip: border-box; background-color: transparent; background-image: none; background-origin: padding-box; background-position-x: 0%; background-position-y: 0%; background-repeat: repeat; background-size: auto; color: rgb(34, 34, 34); font-family: Verdana,Arial,Tahoma,Calibri,Geneva,sans-serif; font-size: 13px; font-size-adjust: none; font-stretch: normal; font-style: normal; font-variant: normal; font-weight: 400; line-height: normal; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;">
</tbody>

Thanks for any help that can be provided.
 
Hi so this is working for the last Milestone "End" now, but the first Milestone it is currently still pasting to the left sort of... it is actually the second Milestone in the sequence is not pasting left but all others are.

I see you have a bit of code with ""0 "" was that to select the first Milestone "0 -MDT"? I have tried to change that to ""Start"" as this is the first Milestone, but the fill still keeps going left.
 
Upvote 0

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
Hi so the fill is stopping correctly at the last milestone End now thanks.

Just having a little problem with the first Milestone, the code is stopping left fill on the second Milestone but then starts filling left with the first one again.

I see you have a little code ""0 "" is that identifying the first Milestone as in 0 -MDT? I have tried changing that to ""Start" but still not stopping fill to the left on the last Milestone.

Would you mind explaining the formula a little, as to what it is doing, mainly the If statement section
 
Upvote 0
I cannot find anything with start in your sheet
 
Upvote 0
Ok, try this
Code:
Sub FillBlanks()

   With Sheets("Macro").UsedRange.Offset(1)
      .Value = .Value
      .SpecialCells(xlBlanks).FormulaR1C1 = "=if(rc[1]="""","""",if(rc[1]=""start"","""",rc[1]))"
      .Value = .Value
   End With
End Sub
The best way to understand the formula, is to step through the code using F8, then when the second
Code:
.Value=.Value
line is highlighted have a look at one of the cells in the macro sheet.
If you still need help understanding it, let me know
 
Upvote 0
Hi Thanks, all looks like it is working now I have to pop out now but will have a look at the F8 next week when back on this. Many thanks for all your help with this.
 
Upvote 0
Glad to help & thanks for the feedback.
 
Upvote 0
Hi Fluff, all looking good this morning, with one little exception. 2 of the data rows do not have a start date yet so when filling left the URN is been pasted over. Is it possible to limit the left fill, so it does not populate column A as this holds the URN for the data? thanks
 
Upvote 0
Hi Fluff, after a bit of playing around with the data, looks like it was a mistake my side. I found the population of column A was from some old code. So just to confirm your code is working as expected and needed thanks again.
 
Upvote 0

Forum statistics

Threads
1,214,925
Messages
6,122,298
Members
449,077
Latest member
Rkmenon

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