Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
I have a page where I select the month and it display the Revenue for that Financial Month. Now the client want the following to determine commercially dead customers .
"If 14 consecutive months prior to Selected Month and including the selected month, there is 0 revenue each month - Then Include in Table"
Figure 1 - Formula for standard Revenue for the month
Revenue USD =
VAR ReferenceDate = MAX('Time'[Financial_Month] )
VAR _Revenue_USD = SUM ( 'FinanceData'[usd_revenue] )
RETURN IF ( _Revenue_USD>=0 && ReferenceDate="Current Month", _Revenue_USD, _Revenue_USD)
Is there a simple DAX way to do this ?
Solved! Go to Solution.
first calculate revenue for last 14 months
var daterange = LASTDATE( ( 'Date Table'[Date])
first calculate revenue for last 14 months
var daterange = LASTDATE( ( 'Date Table'[Date])
Do you have some example data without sensitve data?
Proud to be a Super User!
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
17 | |
16 | |
13 | |
9 | |
9 |
User | Count |
---|---|
14 | |
10 | |
6 | |
6 | |
5 |