Search found 27663 matches

by tatewise
20 May 2024 17:34
Forum: Sources, Citations & Repositories
Topic: Creating unique splitting-method source name
Replies: 31
Views: 354

Re: Creating unique splitting-method source name

I'm not aware of other users having the problem you describe. I thought you were using AS to capture most types of Source. AS ensures the correct Individual record Facts cite the Source record. Your problem description seems to suggest that only the KeyPerson will be associated with the Source. That...
by tatewise
20 May 2024 15:15
Forum: Sources, Citations & Repositories
Topic: Creating unique splitting-method source name
Replies: 31
Views: 354

Re: Creating unique splitting-method source name

The proposed solution would result in an ongoing issue. It would require constant maintenance and would not look all that "presentable" in diagrams and reports. Why an ongoing issue? The automatic expression would add the Record Id to every Source record Title. So just add the Record Id t...
by tatewise
20 May 2024 14:24
Forum: Sources, Citations & Repositories
Topic: Creating unique splitting-method source name
Replies: 31
Views: 354

Re: Creating unique splitting-method source name

Sorry, I was mistaken and my suggestion won't work. The {=RecordId()} function returns the Record Id of the Source record, not the person. I thought the Name type of metafield was a pointer to the Individual record, but I was wrong. So there is no method I can think of that will automatically provid...
by tatewise
20 May 2024 12:58
Forum: Sources, Citations & Repositories
Topic: Creating unique splitting-method source name
Replies: 31
Views: 354

Re: Creating unique splitting-method source name

I assume you are talking about the Record Title Format: expression and a metafield {KeyPerson} with type Name.

{=RecordId(%SOUR.~NM-KEYPERSON%)} will return the Record Id number.
by tatewise
20 May 2024 12:53
Forum: Places, Addresses, Maps & Geocoding
Topic: Changing Latitude/Longitude Display Format
Replies: 5
Views: 116

Re: Changing Latitude/Longitude Display Format

Yes, it is another example of FH inconsistencies. Only three of the qualifiers display both Lat & Long, and the Preferences options match those three. The Lat/Long data entry dialogue adds a fourth option which has no matching qualifier. Of the other six qualifiers, three only display Lat and th...
by tatewise
20 May 2024 11:17
Forum: Places, Addresses, Maps & Geocoding
Topic: Changing Latitude/Longitude Display Format
Replies: 5
Views: 116

Re: Changing Latitude/Longitude Display Format

Ah! Yes! Ignoring the Lat/Long Qualifiers in that dialog would appear to be a bug. The default display format is governed by the Tools > Preferences... > General tab, Latitude & Longitude Format: setting, which defaults to Degrees, Minutes, Seconds but also allows Degrees (decimal) and Numeric. ...
by tatewise
20 May 2024 09:25
Forum: Places, Addresses, Maps & Geocoding
Topic: Changing Latitude/Longitude Display Format
Replies: 5
Views: 116

Re: Changing Latitude/Longitude Display Format

Welcome to the FHUG. The key to understanding how to make such changes is to use the Data Reference Assistant (DRA). I suspect you are customising the Latitude/Longitude column in the Places tab of the Records Window. ( It always helps us if you describe exactly where you are applying the customisat...
by tatewise
20 May 2024 09:09
Forum: General Usage
Topic: Unable to Open File
Replies: 8
Views: 252

Re: Unable to Open File

The structure in your posted screenshots looks perfect except for one thing. The top folder should NOT end with Project but just be Snelson Database & Armory the same as the others. That is why you are seeing Snelson Database & Armory (Folder: Snelson Database & Armory Project) The 4 key...
by tatewise
19 May 2024 21:28
Forum: Ancestral Sources
Topic: Change name
Replies: 9
Views: 148

Re: Change name

Remember that anything entered via AS could have been entered directly in FH although maybe more laboriously.
So once you know where the details exist in FH they can be post-edited after AS has finished.
by tatewise
19 May 2024 16:44
Forum: Media
Topic: Maximum number of media, people, or sources?
Replies: 1
Views: 92

Re: Maximum number of media, people, or sources?

The amount of each type of record is limited by the maximum Record Id, which is 2,147,483,647.
So your PC will probably reach its memory limits before the max Record Id is exceeded.

See FHUG Knowledge Base Record Identifiers.
by tatewise
18 May 2024 17:54
Forum: Sources, Citations & Repositories
Topic: Creating unique splitting-method source name
Replies: 31
Views: 354

Re: Creating unique splitting-method source name

FH allows any records to have the same title/name (except Place records).
e.g. Multiple Individual records can have the same Name, and as discussed here, multiple Source Records can have the same Title. It is the Record Id number that is the unique key which differentiates each record.
by tatewise
18 May 2024 17:12
Forum: General Usage
Topic: Unable to Open File
Replies: 8
Views: 252

Re: Unable to Open File

Those are remnants of the OneDrive corruption. The 'Projects' with Last Updated 1/01/1971 01:00 are invalid GEDCOM files as that is just a default date. However, they cannot be handled by the More Tasks... options because they all share the same folder. The fix must be applied by using Windows File ...
by tatewise
18 May 2024 16:01
Forum: Sources, Citations & Repositories
Topic: Creating unique splitting-method source name
Replies: 31
Views: 354

Re: Creating unique splitting-method source name

IMO the Source Title should not refer to the Fact it ratifies but to the Source Document. Also, it is rare for a Source Document to ratify only one Fact, so which one do you choose? e.g. Birth Certificate ratifies Birth Event, the person's Name, parent Names, Address and Occupation. Thus if the Sour...
by tatewise
17 May 2024 13:41
Forum: Diagrams & Charts
Topic: DownArrow
Replies: 4
Views: 239

Re: DownArrow

BTW: A shortcut to Help on the Focus Window is to hit the F1 key (which is a standard Windows feature). There the Help page says: Next to each displayed relative of the Focus Person, is a small magnifying glass icon. Click on this icon to make that relative the Focus Person (or simply double-click o...
by tatewise
15 May 2024 09:09
Forum: Reports, Books & Websites
Topic: Some Media Records Missing From ISR
Replies: 6
Views: 460

Re: Some Media Records Missing From ISR

Yes, that might make FH struggle. Maybe memory limited.
by tatewise
14 May 2024 22:01
Forum: General Usage
Topic: Property Box Fact Tab Summary Template to show Date Phrase
Replies: 4
Views: 229

Re: Property Box Fact Tab Summary Template to show Date Phrase

You can simplify the expression by using FindText(...) function.
{=TextIf( FindText( %FACT.DATE:XDATETYPE%, "Phrase" ) > 0, %FACT.DATE:COMPACT%, "" )}
by tatewise
14 May 2024 16:35
Forum: General Usage
Topic: Property Box Fact Tab Summary Template to show Date Phrase
Replies: 4
Views: 229

Re: Property Box Fact Tab Summary Template to show Date Phrase

Use the TextIf(...) function and test the following condition:
%FACT.DATE:XDATETYPE% = "Phrase"
with %FACT.DATE:COMPACT% as the next parameter.

The XDATETYPE qualifier is described in the Help for Date Formats along with COMPACT and all the other qualifiers.
by tatewise
14 May 2024 15:17
Forum: Reports, Books & Websites
Topic: Some Media Records Missing From ISR
Replies: 6
Views: 460

Re: Some Media Records Missing From ISR

Does that image display correctly in other reports such as a Media report?
Is it perhaps too large to fit on the page?
Try reducing the image size/resolution.
by tatewise
12 May 2024 18:53
Forum: Plugin Technical Support & Development
Topic: GRO BMD Index Citations
Replies: 61
Views: 1180

Re: GRO BMD Index Citations

I assume that objective only applies to the current Generic only plugin.
Once custom Source Templates are involved that objective is impossible.
by tatewise
12 May 2024 18:49
Forum: Reports, Books & Websites
Topic: Narrative query
Replies: 2
Views: 186

Re: Narrative query

The only other option is it might be possible to adjust the wording by using a custom Language Pack to 'translate' some words in the report, but that is an advanced technique.
by tatewise
12 May 2024 11:49
Forum: Importing
Topic: Missing fact
Replies: 6
Views: 467

Re: Missing fact

RM treats those items as facts, so allows all the usual subsidiary fields such as Date, Place, Note, Sort Date, Media, Citation, etc. Some are disabled by default but can be enabled and some are unlikely to be used in practice. When exported to GEDCOM those subsidiary fields are invalid and raise er...
by tatewise
12 May 2024 08:53
Forum: Sources, Citations & Repositories
Topic: Undefined Template Field
Replies: 2
Views: 163

Re: Undefined Template Field

If the field definition is known then a Query can filter on its Data Ref, e.g. %SOUR.~UL-ORIGINAL_SOURCE_FILE%

However, a general purpose search is not possible with a Query.
It would need a custom plugin to compare Source Template field definitions with Source record fields.
by tatewise
11 May 2024 20:52
Forum: Plugin Technical Support & Development
Topic: GRO BMD Index Citations
Replies: 61
Views: 1180

Re: GRO BMD Index Citations

Coping with various templates is certainly key.
Seeing some examples will help but if you only cope with those variants the plugin may not cope with the next user customised variant. So I think the trick is to allow your plugin data set to be mapped to the template metafields by the user.
by tatewise
11 May 2024 19:57
Forum: Plugin Technical Support & Development
Topic: GRO BMD Index Citations
Replies: 61
Views: 1180

Re: GRO BMD Index Citations

Why not start with the FH Essentials collection Civil Registration Index template?
by tatewise
11 May 2024 10:10
Forum: Importing
Topic: Missing fact
Replies: 6
Views: 467

Re: Missing fact

Welcome to the FHUG. I suspect the FH direct import process is treating the Reference No attribute as a special case. By default, it has no Date or Place details so it is converted to the standard GEDCOM/FH Custom Id field. Even RootsMagic exports it to GEDCOM as a Custom Id REFN field. To refer to ...