Oct 29, 2013 #1 rjhe22 Programmer Jul 1, 2009 7 GB he i need to right this as an expression in a drived column anyone no how to do it ‘BLOOMBERG’ + BLOOMBERG COUNTRY FOR not empty BLOOMBERG COUNTRY else ISS_COUNTRY i have the first part done "BLOOMBERG" + BLOOM_COUNTRY just dont no how to finish it of
he i need to right this as an expression in a drived column anyone no how to do it ‘BLOOMBERG’ + BLOOMBERG COUNTRY FOR not empty BLOOMBERG COUNTRY else ISS_COUNTRY i have the first part done "BLOOMBERG" + BLOOM_COUNTRY just dont no how to finish it of
Oct 29, 2013 #2 notadba MIS May 28, 2003 154 AU Without seeing your data types, the derived expression will be something like: ISS_COUNTRY =="" ? "BLOOMBERG" + BLOOM_COUNTRY : ISS_COUNTRY Just depends on your database and how you handle blank or nulls against the ISS_COUNTRY column May need to be ISNULL( ISS_COUNTRY) ? "BLOOMBERG" + BLOOM_COUNTRY : ISS_COUNTRY Upvote 0 Downvote
Without seeing your data types, the derived expression will be something like: ISS_COUNTRY =="" ? "BLOOMBERG" + BLOOM_COUNTRY : ISS_COUNTRY Just depends on your database and how you handle blank or nulls against the ISS_COUNTRY column May need to be ISNULL( ISS_COUNTRY) ? "BLOOMBERG" + BLOOM_COUNTRY : ISS_COUNTRY
Oct 30, 2013 Thread starter #3 rjhe22 Programmer Jul 1, 2009 7 GB thanks for the help Upvote 0 Downvote