Custom Directory with birthdays
Moderators: Moderators, Tech Support
Custom Directory with birthdays
Is there a way to create a custom church directory that include birthdates without the birth year?
-
- Tech Support
- Posts: 3100
- Joined: Thu May 13, 2004 9:59 am
- Location: PowerChurch Software
- Contact:
Re: Custom Directory with birthdays
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:
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.
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))