I'm seriously stuck! I have a report where I'm trying to pull the null values in as 'blank' and the other values in as they are listed in the database. I can't pull the null values in as 0.00 because I have prices in the database that are 0.00. I've tried all of the following formulas and has not had any luck. Either I return no values at all for anything or the nulls populate as 0.00 which makes it so I can't determine what values are 0.00 and what values are actually null. I've tried creating a formula and I've tried conditional suppression formatting with no success. Below are the formulas that I've tried in both places:
if isnull({TMFS.TM_DF_ALW_1}) then "N/A" else totext({TMFS.TM_DF_ALW_1})
if isnull({TMFS.TM_DF_ALW_1}) then "N/A" else (totext({TMFS.TM_DF_ALW_1}))
if {TM_PGP.PG_ALW_1} >= 0 then {TM_PGP.PG_ALW_1} else ".333" (Tried to get a value to populate for null so I could exclude it)
if {TM_PGP.PG_ALW_1} >= 0 then {TM_PGP.PG_ALW_1}
if isnull ({TMFS.TM_DF_ALW_1}) then " " else (totext({TMFS.TM_DF_ALW_1}))
if isnull ({TMFS.TM_DF_ALW_1}) = " " then " " else (totext({TMFS.TM_DF_ALW_1}))
Any help would be greatly appreciated!
if isnull({TMFS.TM_DF_ALW_1}) then "N/A" else totext({TMFS.TM_DF_ALW_1})
if isnull({TMFS.TM_DF_ALW_1}) then "N/A" else (totext({TMFS.TM_DF_ALW_1}))
if {TM_PGP.PG_ALW_1} >= 0 then {TM_PGP.PG_ALW_1} else ".333" (Tried to get a value to populate for null so I could exclude it)
if {TM_PGP.PG_ALW_1} >= 0 then {TM_PGP.PG_ALW_1}
if isnull ({TMFS.TM_DF_ALW_1}) then " " else (totext({TMFS.TM_DF_ALW_1}))
if isnull ({TMFS.TM_DF_ALW_1}) = " " then " " else (totext({TMFS.TM_DF_ALW_1}))
Any help would be greatly appreciated!