* Recording twins

Homeless Posts from the old forum system
Locked
avatar
neil40
Superstar
Posts: 302
Joined: 12 Apr 2012 13:42
Family Historian: V7
Location: Bicester, Oxfordshire

Recording twins

Post by neil40 »

Other than the fact that 2 children have the same birth date recorded, how do you denote that they are in fact twins, or triplets etc.

Thanks for your thoughts
Neil

ID:6401
User avatar
tatewise
Megastar
Posts: 28341
Joined: 25 May 2010 11:00
Family Historian: V7
Location: Torbay, Devon, UK
Contact:

Recording twins

Post by tatewise »

Where do you want the denotion to appear?

You could add a Record Flag named Twin to them both.

On Diagrams you could add an Icon or some other feature to their boxes.
This can be enabled using a Diagram > Options > Boxes tab Condition such as a Record Flag or an Expression.
The Expression would be something like:
=IsTrue(
(Not(IsSameItem(%INDI%,%INDI.~FATH>~CHIL[1]>%)) and (Diff(DayNumber(%INDI.BIRT.DATE%),DayNumber(%INDI.~FATH>~CHIL[1]>BIRT.DATE%)) ~CHIL[2]>%)) and (Diff(DayNumber(%INDI.BIRT.DATE%),DayNumber(%INDI.~FATH>~CHIL[2]>BIRT.DATE%)) ~CHIL[3]>%)) and (Diff(DayNumber(%INDI.BIRT.DATE%),DayNumber(%INDI.~FATH>~CHIL[3]>BIRT.DATE%)) ~CHIL[4]>%)) and (Diff(DayNumber(%INDI.BIRT.DATE%),DayNumber(%INDI.~FATH>~CHIL[4]>BIRT.DATE%)) < 2))
)

which works for up to 4 siblings but can easily be extended.
It automatically detects any siblings whose birth dates are within 1 day of each other.
This detects not only Twins, but also Triplets, Quads, etc.

It works by checking the INDIvidual is not the same as their FATHer's 1st CHILd, but their BIRT.DATE Diff is < 2 Days.
Then repeating for 2nd, 3rd, and 4th CHILd.
User avatar
Jane
Site Admin
Posts: 8508
Joined: 01 Nov 2002 15:00
Family Historian: V7
Location: Somerset, England
Contact:

Recording twins

Post by Jane »

Mike, a slightly simpler expression is

=IsTrue(
(%INDI.BIRT.DATE% = Field(NextSib(%INDI%),'INDI.BIRT.DATE')
)
or
(%INDI.BIRT.DATE% = Field(PrevSib(%INDI%),'INDI.BIRT.DATE')
)
)

I also add a note to twins and other multiple births listing the other multiples.
User avatar
tatewise
Megastar
Posts: 28341
Joined: 25 May 2010 11:00
Family Historian: V7
Location: Torbay, Devon, UK
Contact:

Recording twins

Post by tatewise »

Wow, yes, when did NextSib() and PrevSib() functions arrive? I didn't spot them.

I would still allow a day difference in dates just in case they were born over midnight.

=IsTrue(
 (
   Diff( DayNumber(%INDI.BIRT.DATE%), DayNumber(Field(NextSib(%INDI%),'INDI.BIRT.DATE')) ) < 2
 ) or
 (
   Diff( DayNumber(%INDI.BIRT.DATE%), DayNumber(Field(PrevSib(%INDI%),'INDI.BIRT.DATE')) ) < 2
 )
)
User avatar
Jane
Site Admin
Posts: 8508
Joined: 01 Nov 2002 15:00
Family Historian: V7
Location: Somerset, England
Contact:

Recording twins

Post by Jane »

, when did NextSib() and PrevSib() functions arrive? I didn't spot them
V4.0 so they have been there a while.
avatar
neil40
Superstar
Posts: 302
Joined: 12 Apr 2012 13:42
Family Historian: V7
Location: Bicester, Oxfordshire

Recording twins

Post by neil40 »

Thank you for the replies.

I've no idea yet how to apply expressions to diagrams, but I will find out.

So, I have created a 'Flag' called 'Twins' and applied it to the children of my second cousin.
What would be nice, is to somehow see Flags that are applied to an individual (even the 'Living' one!) in 'Spouses and Children' View etc, otherwise what is the use of them other than reporting?
It would be useful to tell that I had set 'Twins' Flag to John and James Doe at some point in the future when I've long forgotten I did so!
Would also be nice to show, once flagged, somehow in the Publish tools like Family Group Sheet, Descendants by Generation etc.

Are those possible?
User avatar
tatewise
Megastar
Posts: 28341
Joined: 25 May 2010 11:00
Family Historian: V7
Location: Torbay, Devon, UK
Contact:

Recording twins

Post by tatewise »

I would advise using the Expression wherever possible instead of Record Flags because it is automatic.
You don't have to remember to set Record Flags every time you find Twins. Triplets, Quads, etc, and so you won't forget where you set them.

To customise Diagrams use Options > Boxes tab Expression and insert the Expression from above.
Note that it must all be on one line, so first Copy & Paste to say Notepad and remove the newline breaks, then Copy & Paste to Expression field.
Having done that, you can choose what Box Features you want to indicate multiple births, such as an Icon.

Unfortunately you cannot tailor the Focus Window views.

You can add a Column to the Records Window view using the same Expression.

You can add a field to many Published Reports using Options > Contents tab Add and enter Label such as Multi-Birth and Expression as above again.

See Using Flags and Icons for further info including worked examples.
avatar
David_Lewis
Famous
Posts: 116
Joined: 01 May 2005 18:29
Family Historian: V5

Recording twins

Post by David_Lewis »

I've been using a flag and named it twin and then attaching an icon to that flag. It's simple and works for me.

However of course I may have missed some twins so having an expression that finds those that I have missed would be great.

When I upgrade to version 5 I will give those above a try.
User avatar
tatewise
Megastar
Posts: 28341
Joined: 25 May 2010 11:00
Family Historian: V7
Location: Torbay, Devon, UK
Contact:

Recording twins

Post by tatewise »

David, you don't have to use FH V5, those features are all in FH V4.
avatar
David_Lewis
Famous
Posts: 116
Joined: 01 May 2005 18:29
Family Historian: V5

Recording twins

Post by David_Lewis »

Yes but I'm still on version 3
User avatar
johnmorrisoniom
Megastar
Posts: 901
Joined: 18 Dec 2008 07:40
Family Historian: V7
Location: Isle of Man

Recording twins

Post by johnmorrisoniom »

Jane,
How would I use your expression in a query to find multiple births, so that I can check that they are correct?
User avatar
tatewise
Megastar
Posts: 28341
Joined: 25 May 2010 11:00
Family Historian: V7
Location: Torbay, Devon, UK
Contact:

Recording twins

Post by tatewise »

In an Individual Query, simply use it as the Row Filter Expression along with Condition of Add if and Operator of is true.

This will list everyone with siblings born on the same date.
User avatar
johnmorrisoniom
Megastar
Posts: 901
Joined: 18 Dec 2008 07:40
Family Historian: V7
Location: Isle of Man

Recording twins

Post by johnmorrisoniom »

Mike or Jane
I have started a new custom query called Multiple Births.
Columns are
Individual: DOB:(sorted Ascending) Place of Birth(Tidy)
On rows I have set Add If....
I enter either your expression, or Jane's (without the =IsTrue
but I am not getting the option to choose the operator 'Is True' as all the operator options are blank.
I am on 5.0.7. Am I missing something out?
User avatar
tatewise
Megastar
Posts: 28341
Joined: 25 May 2010 11:00
Family Historian: V7
Location: Torbay, Devon, UK
Contact:

Recording twins

Post by tatewise »

Don't leave out =IsTrue
User avatar
johnmorrisoniom
Megastar
Posts: 901
Joined: 18 Dec 2008 07:40
Family Historian: V7
Location: Isle of Man

Recording twins

Post by johnmorrisoniom »

Thanks Mike,
All working now.
Locked