daveburke114
New Member
- Joined
- Dec 2, 2010
- Messages
- 27
Hi everyone, I've just started using PowerPivot but not sure if this question is in the right place.
I have a small project I'm working on and I basically need to work out the likelihood that people know each other. (To keep it simple I won't go into the whole thing)
I have one table with customers names/addresses/email etc
[TABLE="width: 500"]
<tbody>[TR]
[TD]CustomerID
[/TD]
[TD]First Name
[/TD]
[TD]Surname
[/TD]
[TD]Address1
[/TD]
[TD]Address2
[/TD]
[TD]Address3
[/TD]
[TD]Postcode
[/TD]
[TD]eMail
[/TD]
[/TR]
[TR]
[TD]542645
[/TD]
[TD]Tom
[/TD]
[TD]Evans
[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]784579
[/TD]
[TD]Simon
[/TD]
[TD]Jones
[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
I have one table with a list of events on and a list of people who attended.
[TABLE="width: 500"]
<tbody>[TR]
[TD]EventID
[/TD]
[TD]EventName
[/TD]
[TD]Address1
[/TD]
[TD]Address2
[/TD]
[TD]Address3
[/TD]
[TD]Postcode
[/TD]
[TD]Attendee
[/TD]
[/TR]
[TR]
[TD]784554
[/TD]
[TD]SocialClub
[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]542645
[/TD]
[/TR]
</tbody>[/TABLE]
Obviously with all the fields filled in! So any event is listed as many times as attendees.
If two people in my customer list have attended the same party there's a chance they might know each other. If they have both attended lots of the same parties they are much more likely to know each other. Similarly, if they have both attended a party of 5 people they are much more likely to have spoken than one event of 100 people!
So I need to take into account how many events they appear on the same list, and how many people in total attended the event.
I'm not sure how to proceed with this one. One ideas was to 'weight' the importance of an event with how many people attended (the smaller the better).
Any ideas are very much appreciated!
I apologise if this is in the wrong section and there's a much better way to do this!
Thanks
Dave
I have a small project I'm working on and I basically need to work out the likelihood that people know each other. (To keep it simple I won't go into the whole thing)
I have one table with customers names/addresses/email etc
[TABLE="width: 500"]
<tbody>[TR]
[TD]CustomerID
[/TD]
[TD]First Name
[/TD]
[TD]Surname
[/TD]
[TD]Address1
[/TD]
[TD]Address2
[/TD]
[TD]Address3
[/TD]
[TD]Postcode
[/TD]
[TD]eMail
[/TD]
[/TR]
[TR]
[TD]542645
[/TD]
[TD]Tom
[/TD]
[TD]Evans
[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]784579
[/TD]
[TD]Simon
[/TD]
[TD]Jones
[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
I have one table with a list of events on and a list of people who attended.
[TABLE="width: 500"]
<tbody>[TR]
[TD]EventID
[/TD]
[TD]EventName
[/TD]
[TD]Address1
[/TD]
[TD]Address2
[/TD]
[TD]Address3
[/TD]
[TD]Postcode
[/TD]
[TD]Attendee
[/TD]
[/TR]
[TR]
[TD]784554
[/TD]
[TD]SocialClub
[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]542645
[/TD]
[/TR]
</tbody>[/TABLE]
Obviously with all the fields filled in! So any event is listed as many times as attendees.
If two people in my customer list have attended the same party there's a chance they might know each other. If they have both attended lots of the same parties they are much more likely to know each other. Similarly, if they have both attended a party of 5 people they are much more likely to have spoken than one event of 100 people!
So I need to take into account how many events they appear on the same list, and how many people in total attended the event.
I'm not sure how to proceed with this one. One ideas was to 'weight' the importance of an event with how many people attended (the smaller the better).
Any ideas are very much appreciated!
I apologise if this is in the wrong section and there's a much better way to do this!
Thanks
Dave