kkqazi

New Member
Joined
Dec 21, 2008
Messages
10
Hi,
I am looking to make a Gantt Chart where i can show progress as Primavera P6 progress Line does.
I am attaching picture where its like a snake. Any given time, the bar will either move forward or backward depending on status of activity.

1639168965157.png

any help will be much appreciated.
Thanks
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
I could not think of a way to do it with Conditional Formatting. The code below is a way you could add the lines you suggested. I used values of 1 for ahead of schedule, 0 for on schedule, and -1 for behind schedule. It could be triggered automatically when any of your dates are edited or some other way. It basically deletes and recreates all the lines in the range every time.

You should create a named range for the Snake line column.

VBA Code:
Sub SnakeLine()

  Dim Cel As Range
  Dim CelHt As Single
  Dim CelLeft As Single
  Dim CelWid As Single
  Dim CelRt As Single
  Dim CelTop As Single
  Dim CelBot As Single
  Dim CelMidVert As Single
  Dim CelMidHorz As Single
  Dim CelVal As Integer
  Dim LastCelVal As Integer
  Dim Node1X As Single
  Dim Node1Y As Single
  Dim Node2X As Single
  Dim Node2Y As Single
  Dim Shp As ShapeRange
  Dim Sht As Worksheet
  Dim X As Long
  Dim Rw As Long
  
  Set Sht = ActiveSheet
  For X = Sht.Shapes.Count To 1 Step -1
    If Left(Sht.Shapes(X).Name, 3) = "Row" Then
      Debug.Print Sht.Shapes(X).Name
      Sht.Shapes(X).Delete
    End If
  Next X
  
    
  For Each Cel In Range("I10:I27")
    CelVal = Cel.Value
    CelLeft = Cel.Left
    CelWid = Cel.Width
    CelRt = CelWid + CelLeft
    CelTop = Cel.Top
    CelHt = Cel.Height
    CelBot = Cel.Top + CelHt
    CelMidVert = CelTop + (CelHt / 2)
    CelMidHorz = CelLeft + (CelWid / 2)
    Rw = Cel.Row
    
    Node1Y = CelTop
    Node2Y = CelBot
    If LastCelVal = 1 And CelVal = 1 Then
      Node1X = CelRt
      Node2X = CelRt
    ElseIf LastCelVal = 0 And CelVal = 1 Then
      Node1X = CelMidHorz
      Node2X = CelRt
    ElseIf LastCelVal = -1 And CelVal = 1 Then
      Node1X = CelLeft
      Node2X = CelRt
    ElseIf LastCelVal = 1 And CelVal = 0 Then
      Node1X = CelRt
      Node2X = CelMidHorz
    ElseIf LastCelVal = 0 And CelVal = 0 Then
      Node1X = CelMidHorz
      Node2X = CelMidHorz
    ElseIf LastCelVal = -1 And CelVal = 0 Then
      Node1X = CelLeft
      Node2X = CelMidHorz
    ElseIf LastCelVal = 1 And CelVal = -1 Then
      Node1X = CelRt
      Node2X = CelLeft
    ElseIf LastCelVal = 0 And CelVal = -1 Then
      Node1X = CelMidHorz
      Node2X = CelLeft
    ElseIf LastCelVal = -1 And CelVal = -1 Then
      Node1X = CelLeft
      Node2X = CelLeft
    End If
    
    ActiveSheet.Shapes.AddConnector(msoConnectorStraight, Node1X, Node1Y, Node2X, Node2Y).Select
    Set Shp = Selection.ShapeRange
    Debug.Print Shp.ID
    Shp.Name = "Row" & Rw
    With Shp.Line
      .Visible = msoTrue
      .Weight = 1.75
      .ForeColor.RGB = RGB(255, 0, 0)
      .Transparency = 0
    End With
  
    LastCelVal = CelVal
  Next Cel
  
  Range("I10").Select
    
End Sub
 
Upvote 0
I could not think of a way to do it with Conditional Formatting. The code below is a way you could add the lines you suggested. I used values of 1 for ahead of schedule, 0 for on schedule, and -1 for behind schedule. It could be triggered automatically when any of your dates are edited or some other way. It basically deletes and recreates all the lines in the range every time.

You should create a named range for the Snake line column.

VBA Code:
Sub SnakeLine()

  Dim Cel As Range
  Dim CelHt As Single
  Dim CelLeft As Single
  Dim CelWid As Single
  Dim CelRt As Single
  Dim CelTop As Single
  Dim CelBot As Single
  Dim CelMidVert As Single
  Dim CelMidHorz As Single
  Dim CelVal As Integer
  Dim LastCelVal As Integer
  Dim Node1X As Single
  Dim Node1Y As Single
  Dim Node2X As Single
  Dim Node2Y As Single
  Dim Shp As ShapeRange
  Dim Sht As Worksheet
  Dim X As Long
  Dim Rw As Long
 
  Set Sht = ActiveSheet
  For X = Sht.Shapes.Count To 1 Step -1
    If Left(Sht.Shapes(X).Name, 3) = "Row" Then
      Debug.Print Sht.Shapes(X).Name
      Sht.Shapes(X).Delete
    End If
  Next X
 
   
  For Each Cel In Range("I10:I27")
    CelVal = Cel.Value
    CelLeft = Cel.Left
    CelWid = Cel.Width
    CelRt = CelWid + CelLeft
    CelTop = Cel.Top
    CelHt = Cel.Height
    CelBot = Cel.Top + CelHt
    CelMidVert = CelTop + (CelHt / 2)
    CelMidHorz = CelLeft + (CelWid / 2)
    Rw = Cel.Row
   
    Node1Y = CelTop
    Node2Y = CelBot
    If LastCelVal = 1 And CelVal = 1 Then
      Node1X = CelRt
      Node2X = CelRt
    ElseIf LastCelVal = 0 And CelVal = 1 Then
      Node1X = CelMidHorz
      Node2X = CelRt
    ElseIf LastCelVal = -1 And CelVal = 1 Then
      Node1X = CelLeft
      Node2X = CelRt
    ElseIf LastCelVal = 1 And CelVal = 0 Then
      Node1X = CelRt
      Node2X = CelMidHorz
    ElseIf LastCelVal = 0 And CelVal = 0 Then
      Node1X = CelMidHorz
      Node2X = CelMidHorz
    ElseIf LastCelVal = -1 And CelVal = 0 Then
      Node1X = CelLeft
      Node2X = CelMidHorz
    ElseIf LastCelVal = 1 And CelVal = -1 Then
      Node1X = CelRt
      Node2X = CelLeft
    ElseIf LastCelVal = 0 And CelVal = -1 Then
      Node1X = CelMidHorz
      Node2X = CelLeft
    ElseIf LastCelVal = -1 And CelVal = -1 Then
      Node1X = CelLeft
      Node2X = CelLeft
    End If
   
    ActiveSheet.Shapes.AddConnector(msoConnectorStraight, Node1X, Node1Y, Node2X, Node2Y).Select
    Set Shp = Selection.ShapeRange
    Debug.Print Shp.ID
    Shp.Name = "Row" & Rw
    With Shp.Line
      .Visible = msoTrue
      .Weight = 1.75
      .ForeColor.RGB = RGB(255, 0, 0)
      .Transparency = 0
    End With
 
    LastCelVal = CelVal
  Next Cel
 
  Range("I10").Select
   
End Sub
Thanks, I will try tomorrow morning. Really appreciate your reply.
Thanks again.
 
Upvote 0
Hi Jeffrey,
The code does work thank you. however, as i am zero on vba, i have just attached file and also image to show what i would like to do so you can see.
Our business just come up with brilliant idea to use something which require manual intervention and i want something to make it automated.
I want to have that line appear on the day when we review and take data from a column where i will manually input - ( if we are behind ) and + value if we are ahead. 0 will show that we are on plan so it should be straight line.
I wanted to make all this automated but it think it will require so much efforts and conditions.
so i will do all other dates and shading manually, but want progress line to become automated, if possible.
I appreciate your help.

reg
KK

Progress Gantt.xlsx
ABCDEFGHIJKLMNOPQRSTUVWXY
2
3
4
5Review Date06/12/2021
6
7PhaseLine ItemActionMonthNovemberDecemberJanuaryFebruaryRAG StatusCompletion Date
8WK4546474849505152532345678910
9Behind/Ahead (week)WC01-Nov08-Nov15-Nov22-Nov29-Nov06-Dec13-Dec20-Dec27-Dec03-Jan10-Jan17-Jan24-Jan31-Jan07-Feb14-Feb21-Feb28-Feb
10Plan1.1Define Objective0PlanGREEN08-Nov
11Actual
121.2Arrange meeting with DM0PlanGREEN09-Nov
13Actual
141.3Explore the time line0PlanGREEN10-Nov
15Actual
161.4Assemble Team and Brief-2PlanRED
17Actual
18Do1.5Activity 1 - VSM Line3PlanGREEN06-Dec
19Actual
201.6Activity 2 - Identify Hazards0PlanAMBER
21Actual
221.7Activity 3 - Measure hazards0PlanAMBER
23Actual
241.8Activity 3 - Identify tolerance0PlanAMBER
25Actual
261.9Activity 4 - Identify Controls0PlanAMBER
27Actual
Sheet1
Cell Formulas
RangeFormula
F8:W8F8=WEEKNUM(F9)
G9:W9G9=F9+7
 

Attachments

  • Progress Gantt.JPG
    Progress Gantt.JPG
    150.9 KB · Views: 12
Upvote 0
I've done a lot of Gantt Charts, have created tons of automated schedules in Excel, and I have actually worked with Primavera. The method I gave you could easily be updated in seconds, so all we have to do is figure out how you want present the values that drive the lines and where you want to show them. So, do you think this method will work if we can figure those things out?
 
Upvote 0
Great to hear that. I want to show progress line on chart where we have bars made for progress I.e., plan vs actual. Whole ideas is that any moment of time if I open that chart, I can see if we are on plan, behind plan or ahead of plan. These values either we can generate manually or automatically. Automatic would be great. I had so many automated can’t chart but due to no experience in vba, I got stuck.
I believe status of activity will define the progress bar and where it shows on the chart will depend on the time we open the sheet.
So if I open sheet on 10/12/2021, the line should be on 10/12/21 showing the progress of each activity. Tried to show in picture attached in earlier post.
After your post I feel very positive and excited now.

Reg
KK
 
Upvote 0
If you want to continue, then lets talk about the line you last created. Normally, a gantt chart is driven by date fields for planned beg, planned end, actual beg, and actual end. I can't see by your snapshot if you have those cells. It looks like you've manually colored the cells instead of having the cells Conditional Formatted to work off the dates provided. In this case, I'm not sure the macro has anything to read to position the lines at the planned beg and end dates if behind or ahead.

Seems to me that a percent complete should be created that compares the number of days completed vs the number of planned days to the review date. As an example:
test.xlsb
MNOPQRST
1Planned BegPlanned EndPlanned DaysExpected / Actual BegExpected / Actual EndExpected / Actual DaysDays past DeadlinePercent Variance
211/26/202112/6/20211011/26/202112/10/2021144140%
311/26/202112/6/20211011/26/202112/6/2021100100%
411/26/202112/6/20211011/26/202112/4/20218-280%
Sheet9
Cell Formulas
RangeFormula
R2:R4,O2:O4R2=Q2-P2
S2:S4S2=Q2-N2
T2:T4T2=1+(S2/O2)
 
Upvote 0
There are several metrics companies use to help manage the budget and time. One is the ratio of actual manhours vs planned manhours. In this case you are only wanting to see the deadline comparison, correct?
 
Upvote 0
hi
I made this manual just to show in easy way what I wanted. But you are right, a fully automated can’t chart where the bars are generated automatically through given dates in the start and end date.
Ideally I would to see by days. We do not calculate man hours just through days as how far ahead or behind we are.
I used to have Gantt chart which whenever you open it , there is a line showing where we are as we stand. But my manager showed me the example I sent, they wanna see zigzag type line to see ahead and behind plan. Don’t ask why , as we don’t know :)
So In simple terms.
Start date. End date. How many days has passed and how many completed. If we are behind schedule or ahead of schedule, the line create those snake zig zag showing which activities are ahead or behind.
I think you got it totally right
 
Upvote 0
So, do you have cells for each line with dates? This macro needs some type of value from which to work. Colored cells are not going to work?
 
Upvote 0

Forum statistics

Threads
1,216,218
Messages
6,129,572
Members
449,518
Latest member
srooney

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