Duplicates Posted January 11, 2011 Posted January 11, 2011 In my excel file I have a column called First (for first names) some of the fields are blank and I want to make those blank fields say Group Leader, but I want to keep the other names i have already in there. Any ideas?
Duplicates Posted January 11, 2011 Author Posted January 11, 2011 right now my rule says, if "first" = "z" return "Group Leader"
LesSjo Posted January 11, 2011 Posted January 11, 2011 Try this out... if (Field("First")) { return Field("First"); } else { return "Group Leader"; }
Duplicates Posted January 11, 2011 Author Posted January 11, 2011 didnt work, now everything just says First.
Alex Marshall Posted January 11, 2011 Posted January 11, 2011 if(Field("First")!="") return Field("First") else return "Group Leader"; Check the box for "Treat Return Strings As Tagged Text". Also, make sure your field name matches your data file.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.