cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Dipakb
Regular Visitor

List of customers who haven't done any Transaction in compare to last month

Please suggest the formula which should correctly return the list of customers' name who did not make any transactions in the selected month compared to the previous month.

2 REPLIES 2
Fowmy
Super User
Super User

@Dipakb 

 

 Create the following measure, add your customers in a Table visual and include the mesure in the Visual filter and set it equal to 1, it should show you the customers who have sales in current month but no sales in previous month:

Missing Sales = 
 INT (
                [Sales Amount] = BLANK ()
                    && CALCULATE ( [Sales Amount], PREVIOUSMONTH ( 'Date'[Date] ) ) <> BLANK ()
            )
Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

FreemanZ
Community Champion
Community Champion

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Top Solution Authors