Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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.
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 ()
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
114 | |
108 | |
101 | |
38 | |
35 |
User | Count |
---|---|
149 | |
122 | |
76 | |
74 | |
52 |