Forum Discussion
censoft17
9 years agoFrequent Visitor
Display New Customers list
Hi,
I want to display a list of new customers within a particular date range.
For eg new customers list for July 2017
Output Template:
CustomerID || OrderID || FullName || EmailID || OrderDate || ProductName
Please provide a valuable solution.
4 Replies
- bsasPost Patron
Hi,
Create slicer with month to select. it will show you list of customers depending on selected period.
- Eric_ZhangMicrosoft Employee
If the new customers means those who have the first order in the selected month, you can create a measure as below. See more in the attached pbix file.
isFirstOrder = IF ( CALCULATE ( MIN ( yourTable[date] ), ALLEXCEPT ( yourTable, yourTable[customer] ) ) = MAX ( yourTable[date] ), 1, BLANK () )