[solved]Dcount: Combining two criterias - stuck
Hey,
I'm trying to calculate the number of episodes downloaded from one animation series. I've managed to find two working criterias, but I fail to combine them:
This counts the total amount of episodes for each induvidual anime:
DCount("AnimeFansubberEpisodeID";"AnimeFansubberEpisode";"[AnimeFansubberID]=" & [AnimeFansubberID])
This counts the TOTAL number of episodes from ALL series which have "Download status = Yes"
DCount("AnimeFansubberEpisodeID";"AnimeFansubberEpisode";"[AnimeEpisodeDownloadStatus] = -1")
What I really want is to calculate the totl amount of episodes for each individual anime, which has "Download status= Yes"
DCount("AnimeFansubberEpisodeID";"AnimeFansubberEpisode";"[AnimeFansubberID]=" & [AnimeFansubberID] And "[AnimeEpisodeDownloadStatus]=-1")
This is the only code I've come up with that works - but it counts ALL episodes from ALL series, which is kind of not important..
I hope this is possible.. Thanks in advance
Hey,
I'm trying to calculate the number of episodes downloaded from one animation series. I've managed to find two working criterias, but I fail to combine them:
This counts the total amount of episodes for each induvidual anime:
DCount("AnimeFansubberEpisodeID";"AnimeFansubberEpisode";"[AnimeFansubberID]=" & [AnimeFansubberID])
This counts the TOTAL number of episodes from ALL series which have "Download status = Yes"
DCount("AnimeFansubberEpisodeID";"AnimeFansubberEpisode";"[AnimeEpisodeDownloadStatus] = -1")
What I really want is to calculate the totl amount of episodes for each individual anime, which has "Download status= Yes"
DCount("AnimeFansubberEpisodeID";"AnimeFansubberEpisode";"[AnimeFansubberID]=" & [AnimeFansubberID] And "[AnimeEpisodeDownloadStatus]=-1")
This is the only code I've come up with that works - but it counts ALL episodes from ALL series, which is kind of not important..
I hope this is possible.. Thanks in advance
Last edited: