Inserting a shape based on multiple excel values?

Joined
Jul 27, 2017
Messages
24
I am creating a Gantt chart and one of the last steps is getting a view of milestones on my Gantt. For this I would like to insert a shape whenever column C has a value, "Yes" and then place the shape on the row based on the date entered in column E.

Here is what my sheet looks like so far, with the Gantt view on the right hand side of the table, using conditional formatting to fill in for the length of the tasks:
IDDescriptionMilestone?StartEnd3/13/23/33/43/53/63/73/8
1Regression Testing3/1/20183/3/2018
2Project Go LiveYes3/2/20183/2/2018
3Sprint 33/5/20183/8/2018
4ConversionYes3/7/20183/7/2018

<tbody>
</tbody>

My question is on how I would go about writing vba code to have a shape inserted into the right cell if column C had a value "Yes" and then the shape would be placed on that row based on the End date in column E. Any ideas?

Your suggestions and direction are greatly appreciated, thank you!
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
Try something like this....

You may need to adjust the height and width of the shape (set to 15 in the code below) to get it to fit in the cell.
Code:
Sub DoIt()

Dim rngStart As Range
Dim r As Long
Dim dte1 As Date
Dim rngToFind As Range
Dim sh As Shape
Dim sngLeft As Single
Dim sngTop As Single
Dim sngHeight As Single
Dim sngWidth As Single
'remove all shapes
For Each sh In ActiveSheet.Shapes
    If Left(sh.Name, 7) = "5-Point" Then
        sh.Delete
    End If
Next
Set rngStart = ActiveSheet.Range("A1")
r = 1
Do While rngStart.Offset(r, 0) <> ""
    If rngStart.Offset(r, 2) = "Yes" Then
        dte1 = rngStart.Offset(r, 4)
        Set rngToFind = ActiveSheet.Rows("1:1").Find(what:=dte1)
        If Not rngToFind Is Nothing Then
            sngWidth = 15
            sngHeight = 15
            sngLeft = rngToFind.Left + rngToFind.Width / 2 - sngWidth / 2
            sngTop = rngStart.Offset(r, 0).Top + rngStart.Offset(r, 2).Height / 2 - sngHeight / 2
            ActiveSheet.Shapes.AddShape(msoShape5pointStar, sngLeft, sngTop, sngWidth, sngHeight).Select
        Else
            MsgBox "End Date not found in top row"
        End If
    End If
    r = r + 1
Loop
Range("A1").Select
End Sub
 
Upvote 0
Hey Pat, thanks for the quick response. How exactly would I insert this into my excel? I don't have any prior experience with excel. I know I would need to open the code view from my worksheet, but beyond that step I am fairly lost. Could you (or anyone else) provide some more context?

Thanks!
 
Upvote 0
Start by opening the Code window, as you said: Alt + F11
Right click on or under the name of your workbook in the Project window (usually top left)
Click "Insert", then select "Module"
Copy and paste the code above to the Code window.
You can rename your module in the Properties window (usually bottom left)

Then, back on your worksheet, insert a shape - other than a 5-pointed star (because the code deletes all 5 pointed stars, then recreates them),
This will be used as a button to run the code (I usually pick a rounded rectangle for my buttons)
Right click the rectangle and select "Assign Macro"
Pick the name of the macro you just copied to the code window.
If you want to (FIRST) rename the macro from "DoIt" to something more of your liking.... Sub AddStarsAtMilestoneDates() for example.

Hope this helps.
 
Last edited:
Upvote 0
Thanks Pat! I was able to put the code in the Module, but am still trying to figure out just how I can get it to add shapes whenever Column C is "Yes", and have the shape be placed on the date column that corresponds to the End Date in Column E. Are there edits to the code that you provided that I need to make in order for it to create shapes based on those criteria?

Thanks again for your assistance!
 
Upvote 0
ebm7Fx
I've put in the code in the appropriate module and inserted the button to run the code, but whenever I run it I am moved to cell A1 an no shapes are inserted. I've tried to read through the code to understand if there are any edits I need to make to it to fit it to my actual sheet, but so far I am unable to come up with any answers. At the link below is essentially a copy of my table - I have not changed anything in the code that was originally posted, but when I run it two things happen:
  1. If there are any 5-pointed start shapes they are deleted
  2. My selection moves to cell A1
  3. No shapes are inserted, even on the rows where they should be

Example of my table:
ebm7Fx
ebm7Fx

https://ibb.co/ebm7Fx

Any ideas on what I need to do to make this work? My other option is to go in and manually insert the milestones, and I'm hoping to avoid that very manual tasks as I have ~200 milestones and their dates are not 100% solidified at this point.

Any help on this is greatly appreciated! Thank you in advance!
 
Upvote 0
Try stepping thru the code (select anywhere in the subroutine and start hitting F8)

Then on each line that it executes, you can hover over the variables and the values will be displayed.

It sounds like the line:
If rngStart.Offset(r, 2) = "Yes" Then
is not finding any cells in the C column that have "Yes" until it finds an empty cell.

Upon further looking, it looks like your data starts in row 7..

so:
Set rngStart = ActiveSheet.Range("A1")

should be

Set rngStart = ActiveSheet.Range("A7")

The macro will then work it's way down the A column until an empty space is found.

If you have intentional blank rows, then something slightly different will have to be done.


Also, your dates are in the 5th row, rather than the first row, so....

Set rngToFind = ActiveSheet.Rows("1:1").Find(what:=dte1)

will have to be changed to:

Set rngToFind = ActiveSheet.Rows("5:5").Find(what:=dte1)
 
Upvote 0

Forum statistics

Threads
1,215,326
Messages
6,124,270
Members
449,149
Latest member
mwdbActuary

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