How do I draw an accurate venn diagram?

P

Phil Campbell

I'm trying to draw a venn diagram in Excel, to show where survey respondents
have responded 'yes' to two questions. Microsoft Help refers me to the
picture toolbar but that only allows me to draw an approximate venn diagram,
not to generate one automatically based upon the data I've collected.

Any help gratefully received! :)
 
T

trip_to_tokyo

Just type:-

venn

- into the F1 Help facility and there are adequate instructions there.

If my comments have helped please hit Yes.

Thanks.
 
R

Ralph

I think you need a macro to do that. I placed a Basic Venn on a worksheet
then played around with the following code

Dim xlWs As Worksheet
Dim xlShp As Shape
Set xlWs = ThisWorkbook.Worksheets("Sheet1")
Set xlShp = xlWs.Shapes(1)
Debug.Print xlShp.GroupItems.Count

The GroupItems.Count does return 3 however I was not able to do anything
else with the GroupItems in the Shape. It would give me the message
Permission Denied.

You might try posting your question in Excel Programming. If it is possible
someone there will know how to do it.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top