Page 1 of 1
Custom Directory with birthdays
Posted: Wed Feb 22, 2017 7:36 pm
by CBCmfm
Is there a way to create a custom church directory that include birthdates without the birth year?
Re: Custom Directory with birthdays
Posted: Thu Feb 23, 2017 9:08 am
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.