You'll want to create a rule that returns Yes, No or Default value, since these are the acceptable values for the Use Bookmarking property.
It sounds like you want a certain combination of Artist/Album so here's a simple, but easily modified way:
Select Use Bookmarking as the Field.
Enter the following as the Value:
if(regex([Artist]:::[Album], /#^Brian Eno:::Discreet Music$#/), Yes, Default)
changing, of course, Brian Eno to your desired artist, and Descreet Music to your choice of album.
btw. I used regular expressions here because you'll be able to easily extend or modify (which I suspect you will), and because it avoids having to use the non-existent AND conjunction (ignore me here if this isn't making sense to you).
Remember, these rules are applied only when the file is actually imported. You can remove it from the library, and reimport to test. (Don't delete it permanently, just remove from library).