Custom Directory with birthdays

Family Mailing List, Personal Profiles, Activities and Skills, Attendance, Visitations

Moderators: Moderators, Tech Support

Post Reply
CBCmfm
Posts: 4
Joined: Mon Apr 27, 2015 3:51 pm

Custom Directory with birthdays

Post by CBCmfm »

Is there a way to create a custom church directory that include birthdates without the birth year?

Zorak
Tech Support
Tech Support
Posts: 3100
Joined: Thu May 13, 2004 9:59 am
Location: PowerChurch Software
Contact:

Re: Custom Directory with birthdays

Post by Zorak »

There are some report examples here:

https://www.powerchurch.com/customreports/examples/

Include the birthday field in the list of output fields, then use the following expression to show just the month/day:

Code: Select all

transform(month(born))+"/"+transform(day(born))
The month and day will come out as numbers, which needs to be converted to a string to add the slash, so that's what the transform() is for.

Post Reply