Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
PapaJapa
Contributor II
Contributor II

Advanced set analysis

Hello.

I analyze sales on ebay auctions. I have an auction list and a sale on them (by days [SalesDate]). Each auction has a start and end date (AuctionEndDate). I want to count auctions completed in a month that had sales in the last 7 days before the end.

I want to get a simple table with two columns:

  1. month([AuctionEndDate]) and it is ok
  2. count of auctions with sales in last 7 days

I tried with 

count(DISTINCT {<[AuctionID] = {"=Sum({<[SalesDate]={">$(=date([AuctionEndDate]-7))"}>}[Sales])>'0' "}>} [AuctionID])

... but without success.

Please help 🙂

Thanks,

M

Labels (1)
1 Reply
chris_djih
Creator III
Creator III

May i suggest to shift this problem into the script:

Just create a new Fields:

  • If(AuctionEndDate>=Date(Today()-7),1,0) as last7Days_Flag

then you can transform your Set-Analysis: Count(distinct {<last7Days_Flag={1},Sales={">0"}>} AuctionID)

If you found help, mark the correct answer and give some likes to ALL contributors, that tried to help.