cancel
Showing results for 
Search instead for 
Did you mean: 

inserting a value for empty fields

Former Member
0 Kudos

The field I'm using for "Group #1" is empty in several records. Is there a way to insert a value (something like "unassigned")  for those fields when I run the report?  Right now they all appear grouped together at the top of the report without a group header.

Accepted Solutions (1)

Accepted Solutions (1)

abhilash_kumar
Active Contributor
0 Kudos

Hi Tom,

Assuming this is a string field, here's what you need to do :

1) Create a formula with this code:

If (IsNull({string_field}) OR Trim({string_field}) = '') then

'Unassigned'

else

{string_field}

2) Go to the Group Expert > Replace the existing Group with this formula field.

-Abhilash

Former Member
0 Kudos

That did it!  Thanks you so much!

Answers (0)