Revision clouds?

  • Thread starter Thread starter david.j.winfield
  • Start date Start date
D

david.j.winfield

Is there anyway to easily make revision clouds around specific cells/
groups of cells in excel?

Thanks,
David
 
Is this what you are looking for? The location may need some minor adjustments

Sub Macro1()
'
' Macro1 Macro
' Macro recorded 4/23/2008 by Joel Warburg
'

'
Set Cloud_Loc = Range("B7")
Cloud_Height = 48#
Cloud_Width = 72#
Cloud_Left = Cloud_Loc.Left + Cloud_Width
Cloud_Top = -1 * (Cloud_Loc.Top + Cloud_Height)


ActiveSheet.Shapes.AddShape(msoShapeCloudCallout, _
Cloud_Left, Cloud_Top, Cloud_Width, Cloud_Height).Select

End Sub
 
HI,

I copy the code in a macro in excel 2010, but my problem is it makes the ugly cloud it has as a predefined shape in excel,. i dont want that, i want to do some thing like the attached doc.

May be i am using bad the macro, so i need more help cause i am like a noob in this things.
 

Attachments

Back
Top