![]() |
#1 |
Connoisseur
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 64
Karma: 2810
Join Date: Nov 2010
Device: PW2, K3, Ipad 4, Kindle Fire
|
Filter out my read books
I created a custom metadata called "Read?" with a Yes or No answer. I added the column and I can now click the drop down when I have completed the book. I now want to filter out the read books so I dont see them anymore. I tried messing with tags but I cant find it. Any idea? Thanks.
|
![]() |
![]() |
![]() |
#2 |
IOC Chief Archivist
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 3,950
Karma: 53868218
Join Date: Dec 2010
Location: Fruitland Park, FL, USA
Device: Meebook M7, Paperwhite 2021, Fire HD 8+, Fire HD 10+, Lenovo Tab P12
|
I have a custom yes/no column as well, named read_status. First I use the following search in the search box to find unchecked books:
Code:
#read_status:"=false" Then I save that search using the buttons at the far end of the search bar (type a name in the save box and hit the green + sign). After it is saved (as "unread books"), it's available to use as a restricted view (the drop down and buttons before the search bar). Hope that made sense. I have a bit of a headache. |
![]() |
![]() |
Advert | |
|
![]() |
#3 | |
Member
![]() Posts: 11
Karma: 10
Join Date: Feb 2011
Device: none
|
Quote:
Now if you click the same tag (Yes) Again, this will show all the books withOUT the Yes tag. Cool? Give it a try. You can see the above actions in the Calibre video tutorials. |
|
![]() |
![]() |
![]() |
#4 |
Wizard
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 2,013
Karma: 251649
Join Date: Apr 2010
Location: Tempe, AZ, USA, Earth
Device: JetBook Lite (away from home) + 1 spare, 32" TV (at home)
|
I take a reverse approach. I have a custom column labeled "Unread" that uses the star rating setup to indicate which books haven't been read. Whenever I add a book I haven't read yet but will someday, I assign one star to it (I have 949 books in that category). A book that needs to be higher up on my to read list gets two stars (there are 58 books there). Books on my immediate to read list gets three stars (that list has 7 books). Typically, these are new releases or books in a series I'm working my way through. When I finish a book, I delete the stars. Besides being more flexible than a mere yes/no column, it is easier for me to read at a glance. I use the tag browser to display which category I want to view. I can sort the "Unread" column itself if I want to view all the books that are unread. Clicking it twice moves the read books to the bottom of the list.
Post Edit: I just started using a fourth star for the book I'm currently reading on my computer/TV screen. That way, to quickly reopen the book on my computer, all I have to do is click on Unread in the Tag Browser, click on the four star entry, then double click on the book that pops up. Saves having to type in a title in the search field to find the book. Last edited by Lady Fitzgerald; 03-07-2011 at 02:03 AM. |
![]() |
![]() |
![]() |
#5 |
Gadgetoholic
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 1,467
Karma: 3865860
Join Date: Feb 2011
Location: Sweden
Device: Kobo Libra2, Tolino Vision 6
|
Lady Fitzgerald, you're a genius! I'm stealing your system! Kudos!!
|
![]() |
![]() |
Advert | |
|
![]() |
#6 | |
Wizard
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 1,679
Karma: 3111989
Join Date: Dec 2010
Location: Jianghu
Device: PW1, PW5, iPhone SE 2016, iPhone 13 Pro, iPad Pro 9.7, iPad Pro 2021
|
Quote:
![]() |
|
![]() |
![]() |
![]() |
#7 |
IOC Chief Archivist
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 3,950
Karma: 53868218
Join Date: Dec 2010
Location: Fruitland Park, FL, USA
Device: Meebook M7, Paperwhite 2021, Fire HD 8+, Fire HD 10+, Lenovo Tab P12
|
|
![]() |
![]() |
![]() |
#8 | |
Connoisseur
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 64
Karma: 2810
Join Date: Nov 2010
Device: PW2, K3, Ipad 4, Kindle Fire
|
Quote:
![]() |
|
![]() |
![]() |
![]() |
#9 | ||
IOC Chief Archivist
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 3,950
Karma: 53868218
Join Date: Dec 2010
Location: Fruitland Park, FL, USA
Device: Meebook M7, Paperwhite 2021, Fire HD 8+, Fire HD 10+, Lenovo Tab P12
|
Quote:
Quote:
|
||
![]() |
![]() |
![]() |
#10 | |
Grand Sorcerer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 12,336
Karma: 8012652
Join Date: Jan 2010
Location: Notts, England
Device: Kobo Libra 2
|
Quote:
The search rules are: 1) booleans are tristate (the tweak is not changed) a) You can look for empty values with any of: #colname:empty (as translated) #colname:blank (as translated) #colname:_empty (not translated) #colname:false (not translated) b) You can look for 'false' values (red X) with any of: #colname:no (as translated) #colname:unchecked (as translated) #colname:_no (not translated) #colname:true (not translated) c) You can look for 'true' values (green check) with any of: #colname:yes (as translated) #colname:checked (as translated) #colname:_yes (not translated) #colname:true (not translated) Note that #colname:true finds both red X and green check. That is because a search for true means search for 'set to something'. 2) booleans are NOT tristate (the tweak has been changed) a) You can look for 'false' values (red X) or empty values with any of: #colname:no (as translated) #colname:unchecked (as translated) #colname:_no (not translated) #colname:false (not translated) b) You can look for 'true' values (green check) with any of: #colname:yes (as translated) #colname:checked (as translated) #colname:_yes (not translated) #colname:true (not translated) Last edited by chaley; 03-11-2011 at 09:12 AM. |
|
![]() |
![]() |
![]() |
#11 | |
IOC Chief Archivist
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 3,950
Karma: 53868218
Join Date: Dec 2010
Location: Fruitland Park, FL, USA
Device: Meebook M7, Paperwhite 2021, Fire HD 8+, Fire HD 10+, Lenovo Tab P12
|
Quote:
![]() |
|
![]() |
![]() |
![]() |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Read all about it! Device owners read more books, magazines and newspapers | dacattt | News | 24 | 10-21-2012 04:43 AM |
READ 100 BOOKS in 2011! The What Have You Read Thread. | kindlekitten | Reading Recommendations | 28 | 01-06-2011 12:23 AM |
Find me some books to read based on what I have recently read (and liked) | rahulm | Reading Recommendations | 16 | 08-11-2010 03:18 PM |
Content Can no longer filter books from Home screen in 2.5? | kwnewton | Amazon Kindle | 3 | 06-25-2010 01:04 PM |
E-Books menu format filter | rlparker | Feedback | 0 | 04-08-2009 01:00 PM |