I have 3 tables that I am using for one consolidated report (NameMain, ArrestMain & TattoosMain)
When I query a set of dates, I want to see the name and descriptors (race, sex, age, etc..) and IF this person has been arrested and IF this person has Tattoos.
The problem is that everyone shows up on the NameMain table, but when I add the arrest features- it only shows people who have been arrested- AND when I add tattoos, it only shows people who have been arrested which have tattoos.
I've tried using a formula to show if tattoos or arrest are null then "NO Arrest" or "No Tattoos" v/s "Arrest" or "Tattoos", but my report is still only showing the people who have been arrested and have tattoos. Does anyone know why this might be happening and maybe have a solution to fix it.
Here is an example of the formulas for arrest (tattoos are the same):
(Formula #1) {@IFARR} - IF ISNULL({armain.book_id}) THEN TRUE ELSE FALSE
(Formula #2) {@ARREST} - IF ({@IFARR}) = TRUE THEN "NO ARREST UNDER THIS NAME" ELSE ("BOOK ID: "+(TOTEXT({armain.book_id}))+" , "+{armain.agency}+" , "+(TOTEXT({armain.date_arr}))+" , "+{armain.charge})
When I query a set of dates, I want to see the name and descriptors (race, sex, age, etc..) and IF this person has been arrested and IF this person has Tattoos.
The problem is that everyone shows up on the NameMain table, but when I add the arrest features- it only shows people who have been arrested- AND when I add tattoos, it only shows people who have been arrested which have tattoos.
I've tried using a formula to show if tattoos or arrest are null then "NO Arrest" or "No Tattoos" v/s "Arrest" or "Tattoos", but my report is still only showing the people who have been arrested and have tattoos. Does anyone know why this might be happening and maybe have a solution to fix it.
Here is an example of the formulas for arrest (tattoos are the same):
(Formula #1) {@IFARR} - IF ISNULL({armain.book_id}) THEN TRUE ELSE FALSE
(Formula #2) {@ARREST} - IF ({@IFARR}) = TRUE THEN "NO ARREST UNDER THIS NAME" ELSE ("BOOK ID: "+(TOTEXT({armain.book_id}))+" , "+{armain.agency}+" , "+(TOTEXT({armain.date_arr}))+" , "+{armain.charge})