Duplicates Posted January 11, 2011 Share 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? Link to comment Share on other sites More sharing options...
Duplicates Posted January 11, 2011 Author Share Posted January 11, 2011 right now my rule says, if "first" = "z" return "Group Leader" Link to comment Share on other sites More sharing options...
LesSjo Posted January 11, 2011 Share Posted January 11, 2011 Try this out... if (Field("First")) { return Field("First"); } else { return "Group Leader"; } Link to comment Share on other sites More sharing options...
Duplicates Posted January 11, 2011 Author Share Posted January 11, 2011 didnt work, now everything just says First. Link to comment Share on other sites More sharing options...
Alex Marshall Posted January 11, 2011 Share 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. Link to comment Share on other sites More sharing options...
Dan Korn Posted January 11, 2011 Share Posted January 11, 2011 return Field("First") || "Group Leader"; Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.